Chatwoot/app/javascript/dashboard/assets/scss/_layout.scss

78 lines
1.2 KiB
SCSS
Raw Normal View History

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
.app-root {
@include flex;
2019-10-20 08:04:19 +00:00
flex-direction: column;
}
2019-10-27 13:58:02 +00:00
.app-content {
@include flex;
@include full-height;
overflow: hidden;
}
.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;
@include margin($zero);
@include padding($space-normal);
overflow-y: auto;
}
.content-box {
overflow: auto;
@include padding($space-normal);
}
.back-button {
@include flex;
align-items: center;
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;
flex-direction: column;
img {
max-width: $space-mega;
@include padding($space-one);
}
}