Skip to content

Commit

Permalink
Merge pull request #3 from Sammy-T/styling
Browse files Browse the repository at this point in the history
Clean up external styling
  • Loading branch information
Sammy-T authored Oct 16, 2024
2 parents e3a07a9 + 8f6273c commit 0168585
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/app.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#maildo-app {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
color-scheme: light dark;

--maildo-spacing: 1rem;
Expand All @@ -11,11 +10,29 @@
--maildo-link-color: #646cff;
--maildo-link-hover-color: light-dark(#62659f, #8a8ff8);

* {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
font-size: revert;
font-weight: revert;
line-height: revert;
padding: 0;
margin: 0;
border: none;
}

h1, h2, h3, h4, h5, h6, p {
color: var(--maildo-color);
}

h1, h2, h3, h4, h5, h6 {
margin: 0;
margin-bottom: var(--maildo-spacing);
}

p {
margin: 1rem 0;
}

a {
color: var(--maildo-link-color);
text-decoration: inherit;
Expand All @@ -40,7 +57,6 @@
align-items: center;
justify-content: center;
background-color: #08090abf;
color: var(--maildo-color);
backdrop-filter: blur(0.05rem);
-webkit-backdrop-filter: blur(0.05rem);
z-index: 999;
Expand Down

0 comments on commit 0168585

Please sign in to comment.