Revert "Add eslint config, restructure for scss update"

This reverts commit 59c9a6de0b.
This commit is contained in:
2025-09-08 10:35:18 +02:00
parent 472c32a5fe
commit d564837af2
16 changed files with 3 additions and 2579 deletions

48
site/src/css/wrapfig.css Normal file
View File

@@ -0,0 +1,48 @@
.wrapfig-wrapper {
width: 100%;
position: relative;
}
.wrapfig {
width: 100%;
}
.wrapfig.left {
float: none;
}
.wrapfig.right {
float: none;
}
.wrapfig-text {
margin: 5px;
width: 100%;
}
@media only screen and (min-width: 999px) {
.wrapfig {
width: 40%;
}
.wrapfig.left {
float: left;
}
.wrapfig.right {
float: right;
}
.wrapfig-text {
width: 58%;
}
.wrapfig-text.left {
margin-right: auto;
}
.wrapfig-text.right {
margin-left: auto;
}
}