2019-08-14 09:48:44 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-wrapper {
|
|
|
|
@include full-height;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.app-root {
|
|
|
|
@include flex;
|
2019-10-20 08:04:19 +00:00
|
|
|
flex-direction: column;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.app-content {
|
|
|
|
@include flex;
|
2019-10-30 06:38:10 +00:00
|
|
|
@include full-height;
|
|
|
|
overflow: hidden;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.view-box {
|
|
|
|
@include full-height;
|
|
|
|
height: 100vh;
|
|
|
|
@include margin(0);
|
|
|
|
@include space-between-column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.view-panel {
|
2019-10-20 08:04:19 +00:00
|
|
|
flex-direction: column;
|
2019-08-14 09:48:44 +00:00
|
|
|
@include margin($zero);
|
|
|
|
@include padding($space-normal);
|
2020-02-22 13:45:45 +00:00
|
|
|
overflow-y: auto;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.content-box {
|
2020-02-22 13:45:45 +00:00
|
|
|
overflow: auto;
|
2019-08-14 09:48:44 +00:00
|
|
|
@include padding($space-normal);
|
|
|
|
}
|
|
|
|
|
|
|
|
.back-button {
|
2020-02-20 05:32:12 +00:00
|
|
|
@include flex;
|
|
|
|
align-items: center;
|
2019-08-14 09:48:44 +00:00
|
|
|
color: $color-woot;
|
|
|
|
font-size: $font-size-default;
|
|
|
|
font-weight: $font-weight-normal;
|
|
|
|
margin-right: $space-normal;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
margin-right: $space-smaller;
|
|
|
|
font-size: $font-size-large;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-spinner {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-items-error-message {
|
|
|
|
@include flex;
|
|
|
|
@include full-height;
|
2019-10-20 08:04:19 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2019-08-14 09:48:44 +00:00
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: $space-mega;
|
|
|
|
@include padding($space-one);
|
|
|
|
}
|
|
|
|
}
|