Compare commits

...

2 commits

Author SHA1 Message Date
424274cda4
feat: add favicon
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-04-14 15:48:12 +02:00
c1acb631ff
homepage: fix black box below cards on certain screen sizes 2024-04-14 15:47:54 +02:00
5 changed files with 13 additions and 2 deletions

View file

@ -46,6 +46,7 @@ site.loadAssets([ ".js" ]);
site.copy("fonts");
site.copy("img");
site.copy("favicon.ico");
site.filter("title", (value = '') => value + (value ? " | " : "") + "MiOM");

View file

@ -4,7 +4,7 @@
<meta charset="utf-8" />
<title>{{ title |> title |> safe }}</title>
<link rel="shortcut icon" href="/favicon.png" />
<link rel="shortcut icon" href="/favicon.ico" />
<meta name="theme-color" content="{{ themeColor }}" id="theme-color" />
<meta name="description" content="MiOM Kreativraum is a creative space in Cologne, Germany">

View file

@ -33,5 +33,7 @@
<div class="mi-card--text">{{ card.text }}</div>
</a>
{{ /for }}
</main>
<div class="mi-page-filler"></div>
{{ /layout }}

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 KiB

View file

@ -69,6 +69,13 @@ h4 {
width: 100vw;
}
.mi-page-filler {
width: 100%;
padding: 0;
flex-basis: 0;
flex-grow: 1;
}
.mi-border {
pointer-events: none;
z-index: 10;
@ -317,7 +324,7 @@ h4 {
.mi-main {
background: var(--background);
margin: 0 var(--box-padding);
flex-grow: 1;
flex-grow: 0;
position: relative;
margin-bottom: var(--box-padding);
}
@ -346,6 +353,7 @@ h4 {
background: var(--foreground);
grid-gap: 1px;
grid-template-columns: 1fr;
padding-bottom: 1px;
}
@media screen and (min-width: 800px) {