This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/theme/content.scss

43 lines
726 B
SCSS
Raw Normal View History

.app-container {
2019-12-19 22:09:23 +00:00
min-height: calc(100vh - 65px);
@media screen and (max-width: $tablet) {
2020-06-12 17:32:37 +00:00
padding-top: $navbar-height;
2019-12-19 22:09:23 +00:00
}
.app-content {
2020-08-11 18:32:05 +00:00
padding: $navbar-height + 1.5rem 1.5em 1rem 1.5em;
2019-12-19 22:09:23 +00:00
z-index: 2;
2020-06-25 21:56:41 +00:00
&.is-menu-enabled {
margin-left: 17vw;
}
2019-12-19 22:09:23 +00:00
@media screen and (max-width: $tablet) {
margin-left: 0;
padding-top: 1.5em;
min-height: calc(100vh - 4rem);
}
.card {
2019-12-19 22:09:23 +00:00
background: #fff;
}
}
}
.noauth-container {
2020-06-17 07:12:41 +00:00
max-width: 450px;
width: 100%;
margin: 0 auto;
2020-06-17 07:12:41 +00:00
padding: 1rem;
2020-06-17 07:12:41 +00:00
@media screen and (max-width: 450px) {
.login-buttons {
flex-direction: column;
.control:first-child {
margin-bottom: 1rem;
}
}
}
}