diff options
author | gennyble <gen@nyble.dev> | 2024-04-14 03:11:34 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-04-14 03:11:34 -0500 |
commit | 1abacf5cd3d0c847c5f188bbbd7c5232cc589396 (patch) | |
tree | ad30813a74108fefa69293a485cd24e0156611e8 /served/things/memoryleak/memoryleak.css | |
parent | 3529c4b05c20ed9eeccf67a9949105d9fb0171eb (diff) | |
download | ∞-1abacf5cd3d0c847c5f188bbbd7c5232cc589396.tar.gz ∞-1abacf5cd3d0c847c5f188bbbd7c5232cc589396.zip |
Don't flaot memoryleak downloads
Diffstat (limited to 'served/things/memoryleak/memoryleak.css')
-rw-r--r-- | served/things/memoryleak/memoryleak.css | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/served/things/memoryleak/memoryleak.css b/served/things/memoryleak/memoryleak.css index 7ba1aff..1d3470b 100644 --- a/served/things/memoryleak/memoryleak.css +++ b/served/things/memoryleak/memoryleak.css @@ -3,7 +3,7 @@ flex-direction: column; } -#downloads>ul { +#downloads ul { margin: 0; list-style: square; } @@ -14,35 +14,18 @@ code { border-radius: 4px; } -/* -#ifdef FLOAT_HELL -#define FLOAT_HELL - -this is so i can have the downloads section float to the right on wide screens, -but shove it at the bottom on narrow screens. -*/ - #float-hell { display: block; } #downloads { - float: right; - width: 33%; - margin-left: 0.5rem; + display: flex; + flex-direction: row; } @media (max-width: 30rem) { - #float-hell { - display: grid; - grid-template-rows: 1fr; - } - #downloads { - grid-row-start: 100; - width: 100%; - margin-left: none; + display: grid; + grid-template-columns: min-content min-content; } -} - -/*#endif //FLOAT_HELL*/ \ No newline at end of file +} \ No newline at end of file |