no text shadows

This commit is contained in:
Ondřej Žára 2020-06-22 22:33:35 +02:00
parent 664e9b7e67
commit 8cdc26ec66
5 changed files with 7 additions and 7 deletions

View File

@ -11,7 +11,6 @@ cyp-app {
line-height: 1.25;
background-color: var(--bg);
color: var(--fg);
text-shadow: var(--text-shadow);
white-space: nowrap;
}

View File

@ -9,9 +9,5 @@ cyp-tag {
margin-right: var(--icon-spacing);
width: 64px;
height: 64px;
.icon {
filter: drop-shadow(var(--text-shadow));
}
}
}

View File

@ -53,7 +53,6 @@
> .icon {
margin-right: var(--icon-spacing);
filter: drop-shadow(var(--text-shadow));
}
.title {

View File

@ -34,6 +34,12 @@ cyp-app[theme=dark] { .dark(); }
cyp-app[theme=auto] { .light(); }
}
@media (max-width: 640px), (max-height:640px) {
cyp-app[theme] {
--text-shadow: none;
}
}
cyp-app[color=dodgerblue] {
--primary-raw: 30, 144, 255;
}

File diff suppressed because one or more lines are too long