diff options
author | 0neGal <mail@0negal.com> | 2023-03-09 18:17:48 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-03-09 18:17:48 +0100 |
commit | 3e6976207dd980fc58d7a4e7e0d5c69060c062e1 (patch) | |
tree | 7914effdfcfca20ba060a0be04b953a0063bf760 /src | |
parent | c1ac53db298354a13df2978a4b89706919e8b8c8 (diff) | |
download | Viper-3e6976207dd980fc58d7a4e7e0d5c69060c062e1.tar.gz Viper-3e6976207dd980fc58d7a4e7e0d5c69060c062e1.zip |
fixed centered .grid items/elements
If not enough elements are inside a grid to fill it out entirely it'll
attempt to put spacing in between the items to make them vertically
centered. This is now removed.
Diffstat (limited to 'src')
-rw-r--r-- | src/app/main.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/main.css b/src/app/main.css index f123029..d76afdf 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -110,6 +110,7 @@ a, button, #close, #nsRelease, #vpReleaseNotes, .grid { display: flex; flex-wrap: wrap; + align-content: start; } .switch { |