mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 15:19:18 -08:00
23 lines
407 B
SCSS
23 lines
407 B
SCSS
img {
|
|
/* Make sure that the images do not overflow the body */
|
|
max-width: 100%;
|
|
/* Make sure that the images are not too tall as to be annoying */
|
|
max-height: 50ch;
|
|
}
|
|
|
|
#gallery {
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
column-count: 2;
|
|
}
|
|
}
|
|
|
|
a:has(img) {
|
|
border-bottom: none !important;
|
|
padding: 0.02rem;
|
|
img {
|
|
border: 0.01em transparent solid;
|
|
}
|
|
}
|