aboutsummaryrefslogtreecommitdiff
path: root/src/main/assets
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-11-23 19:02:10 +0300
committerGravatar Vitaly Takmazov2021-11-23 19:02:10 +0300
commit1b3aad5b3c70382a8e1c373ef765655bdb7e9937 (patch)
tree3b67de40233596d9776fed29a982a34edeb0f69d /src/main/assets
parent8b4f245f7339550193d5f5822b4a2f97d455fae3 (diff)
Fix more stylelint warnings
* appearance now handled by autoprefixer * Font names should not have quotes
Diffstat (limited to 'src/main/assets')
-rw-r--r--src/main/assets/style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/assets/style.css b/src/main/assets/style.css
index 957d7bd0..4e53eaec 100644
--- a/src/main/assets/style.css
+++ b/src/main/assets/style.css
@@ -74,7 +74,7 @@ html,
input,
textarea,
button {
- font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
-webkit-font-smoothing: subpixel-antialiased;
}
h1,
@@ -250,7 +250,7 @@ pre::selection {
border: 1px solid var(--border-color);
outline: none !important;
padding: 4px;
- -webkit-appearance: none;
+ appearance: none;
border-radius: 0;
}