69 lines
1.5 KiB
SCSS
69 lines
1.5 KiB
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
min-height: 100%;
|
|
|
|
.no-folder-selected {
|
|
width: 100%;
|
|
|
|
.choose-a-folder {
|
|
margin-top: 96px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.folder-informations {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
|
|
.folder-header {
|
|
width: 100%;
|
|
|
|
.header {
|
|
margin-bottom: 32px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
.second-box {
|
|
margin-top: 24px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.progress-bar {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.button-container {
|
|
width: 100%;
|
|
text-align: center;
|
|
:first-child {
|
|
margin-right: 12px;
|
|
}
|
|
> * {
|
|
margin: auto;
|
|
}
|
|
@media (max-width: $screen-m) {
|
|
:first-child {
|
|
margin-right: 0;
|
|
margin-bottom: 12px;
|
|
}
|
|
> * {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |