Files
MusicPlayer/web/src/scss/shared/main.scss
T

45 lines
765 B
SCSS

.shared-view {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
.panel {
width: 45%;
margin-left: 2.5%;
margin-right: 2.5%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
>.current-song-wrapper {
margin-bottom: 1.5rem;
width: 100%;
height: 100%;
max-height: calc(100% - 10rem);
overflow: hidden;
}
>.time {
display: flex;
width: 85%;
margin-left: auto;
margin-right: auto;
>p {
margin-top: 0px;
margin-bottom: 5px;
}
>.duration {
margin-left: auto;
}
}
}
}