accounts-frontend/packages/app/pages/auth/auth.scss

50 lines
667 B
SCSS
Raw Normal View History

@import '~app/components/ui/colors.scss';
$sidebar-width: 320px;
2016-01-04 02:48:42 +05:30
.sidebar {
2020-05-24 04:38:24 +05:30
position: absolute;
bottom: 0;
right: 0;
left: 0;
top: 50px;
z-index: 10;
background: $black;
2016-01-04 02:48:42 +05:30
}
.hiddenSidebar {
2020-05-24 04:38:24 +05:30
composes: sidebar;
2020-05-24 04:38:24 +05:30
display: none;
}
2016-01-04 02:48:42 +05:30
.content {
2020-05-24 04:38:24 +05:30
text-align: center;
max-width: 340px;
margin: 0 auto;
}
@media (min-width: 350px) {
2020-05-24 04:38:24 +05:30
.content {
padding: 55px 0;
}
}
@media (min-width: 720px) {
2020-05-24 04:38:24 +05:30
.content {
padding: 55px 50px;
margin-left: $sidebar-width;
}
2020-05-24 04:38:24 +05:30
.sidebar {
right: auto;
2020-05-24 04:38:24 +05:30
width: $sidebar-width;
}
2020-05-24 04:38:24 +05:30
.hiddenSidebar {
display: block;
}
2016-01-04 02:48:42 +05:30
}