Spaces:
Configuration error
Configuration error
File size: 461 Bytes
74aacd5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
.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 */
}
input:disabled {
color: var(--text-color-gray);
}
|