Files
mixtape/zero.Backoffice.UI/app/styles/Canvas/_canvas.scss
T

100 lines
1.3 KiB
SCSS
Raw Normal View History

body, html
{
width: 100%;
margin: 0;
padding: 0;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: var(--color-page);
}
html
{
2020-04-07 00:33:09 +02:00
height: 100vh;
-webkit-text-size-adjust: 100%;
}
body
{
2020-04-07 00:33:09 +02:00
height: 100vh;
background: var(--color-page);
color: var(--color-text);
font-size: 16px;
2021-08-25 10:12:48 +02:00
font-family: var(--font);
}
.clear
{
display: block;
clear: both;
float: none;
}
.app
{
2020-04-07 00:33:09 +02:00
height: 100vh;
display: grid;
grid-template-columns: auto 1fr;
justify-content: stretch;
2021-04-15 15:46:16 +02:00
//grid-gap: 3px;
2021-01-07 01:08:09 +01:00
}
2021-11-17 15:43:45 +01:00
.theme-switching, .theme-switch *
{
transition: color 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}
2021-01-07 01:08:09 +01:00
.theme-rounded .app
{
grid-gap: 0;
2020-04-06 00:49:09 +02:00
}
2020-04-10 18:48:36 +02:00
.app-main
{
overflow-y: auto;
}
2020-04-06 00:49:09 +02:00
.fade-enter-active, .fade-leave-active
{
transition: opacity .5s;
}
.fade-enter, .fade-leave-to
{
opacity: 0;
2020-04-25 19:38:45 +02:00
}
2021-08-25 10:12:48 +02:00
.ui-split, .ui-split-three, .ui-split-four
2020-04-25 19:38:45 +02:00
{
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--padding);
2020-04-25 19:38:45 +02:00
align-items: stretch;
justify-content: stretch;
2020-05-04 16:00:39 +02:00
2020-10-04 00:52:54 +02:00
& + .ui-split
{
margin-top: 50px;
}
2020-05-04 16:00:39 +02:00
.ui-property + .ui-property
{
margin-top: 0;
padding-top: 0;
2021-08-16 10:30:45 +02:00
border-top: none;
2020-05-04 16:00:39 +02:00
}
2020-05-06 15:22:51 +02:00
}
.ui-split-three
{
grid-template-columns: 1fr 1fr 1fr;
2020-10-04 00:52:54 +02:00
}
.ui-split-four
{
grid-template-columns: 1fr 1fr 1fr 1fr;
}