fixed styling issues
All checks were successful
Copy Files to Samba Share dev / Copy Files (push) Successful in 25s

This commit is contained in:
2024-11-07 21:10:54 +01:00
parent da7a2f5ad1
commit ae6b10d18e
5 changed files with 13 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
.naam { .naam {
font-size: 1.5rem; font-size: 1.5rem;
font-weight: bold; font-weight: 500;
text-transform: uppercase; text-transform: uppercase;
word-spacing: 0.7rem; word-spacing: 0.7rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;

View File

@@ -1,5 +1,5 @@
<a href="/" aria-label="Ontvlambaar"><img src="assets/logo-dark.svg" alt="Logo dark" class="only-on-dark" /></a> <a href="/" aria-label="Ontvlambaar"><img src="assets/logo-dark.svg" alt="Logo dark" class="only-on-dark" /></a>
<a href="/" aria-label="Ontvlambaar"><img src="assets/logo-light.svg" alt="Logo light" class="only-on-light" /></a> <a href="/" aria-label="Ontvlambaar"><img src="assets/logo-light.svg" alt="Logo light" class="only-on-light" /></a>
<h1>Ontvlambaar</h1> <h1>Ontvlambaar</h1>
<span class="slogan">Jullie het vuur, wij de branding</span> <span class="slogan">Jullie&nbsp;het&nbsp;vuur, wij&nbsp;de&nbsp;branding</span>
<app-toggle (toggleOn)="themeClicked($event)" [toggleValue]="isDarkMode()"></app-toggle> <app-toggle (toggleOn)="themeClicked($event)" [toggleValue]="isDarkMode()"></app-toggle>

View File

@@ -33,10 +33,10 @@ img {
@media only screen and (max-width: $small-screen) { @media only screen and (max-width: $small-screen) {
h1 { h1 {
font-size: 2rem; font-size: 3rem;
} }
.slogan { .slogan {
font-size: 1.5rem; font-size: 2rem;
} }
:host { :host {

View File

@@ -16,7 +16,7 @@
gap: 1rem; gap: 1rem;
h2 { h2 {
font-size: 1.3rem; font-size: 1.5rem;
font-weight: 300; font-weight: 300;
margin: 0; margin: 0;
display: flex; display: flex;
@@ -36,6 +36,10 @@
width: fit-content; width: fit-content;
align-self: flex-start; align-self: flex-start;
h2 {
font-size: 1.3rem;
}
img { img {
height: 100%; height: 100%;
} }

View File

@@ -17,6 +17,10 @@ html {
.only-on-dark { .only-on-dark {
display: none; display: none;
} }
h2 {
font-weight: 500;
}
} }
[data-theme="dark"] { [data-theme="dark"] {