Files
IOPaint/lama_cleaner/app/src/styles/App.scss
2022-10-26 22:07:06 +08:00

17 lines
408 B
SCSS

.lama-cleaner {
display: grid;
grid-template-areas: 'main-content';
width: 100vw;
height: 100vh;
background-color: var(--page-bg);
color: var(--page-text-color);
transition-property: background-color, color;
transition-duration: 0.2s;
transition-timing-function: repeat(2, ease-out);
}
a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
}