Browse Source

dark mode accommodations

pull/1886/head
gingervitis 5 years ago committed by Gabe Kangas
parent
commit
50e729318c
  1. 15
      web/styles/chat.scss

15
web/styles/chat.scss

@ -10,6 +10,11 @@ @@ -10,6 +10,11 @@
.ant-table-cell {
color: rgba(0,0,0,.25)
}
@media (prefers-color-scheme: dark) {
.ant-table-cell {
color: rgba(255,255,255,.25)
}
}
}
.ant-table-cell {
font-size: 12px;
@ -55,6 +60,11 @@ @@ -55,6 +60,11 @@
.label {
color: #000;
}
@media (prefers-color-scheme: dark) {
.label {
color: #fff;
}
}
}
.label {
@ -104,4 +114,9 @@ @@ -104,4 +114,9 @@
.ant-btn-text:hover {
background-color: rgba(0,0,0,.1)
}
@media (prefers-color-scheme: dark) {
.ant-btn-text:hover {
background-color: rgba(255,255,255,.3)
}
}
}

Loading…
Cancel
Save