Patsagorn Y.
2025-01-16 8cf3e3001f2cbd18da73fcc92ae5f4b76d3ecf21
quartz/components/styles/darkmode.scss
@@ -1,17 +1,15 @@
.darkmode {
  cursor: pointer;
  padding: 0;
  position: relative;
  background: none;
  border: none;
  width: 20px;
  height: 20px;
  margin: 0 10px;
  & > .toggle {
    display: none;
    box-sizing: border-box;
  }
  text-align: inherit;
  & svg {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    width: 20px;
    height: 20px;
@@ -21,20 +19,28 @@
  }
}
:root[saved-theme="dark"] .toggle ~ label {
:root[saved-theme="dark"] {
  color-scheme: dark;
}
:root[saved-theme="light"] {
  color-scheme: light;
}
:root[saved-theme="dark"] .darkmode {
  & > #dayIcon {
    opacity: 0;
    display: none;
  }
  & > #nightIcon {
    opacity: 1;
    display: inline;
  }
}
:root .toggle ~ label {
:root .darkmode {
  & > #dayIcon {
    opacity: 1;
    display: inline;
  }
  & > #nightIcon {
    opacity: 0;
    display: none;
  }
}