diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 10:55:56 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-12 10:55:56 +0500 |
commit | eb9a39c5c471702f773aafe4cd47ba6375b5b7f3 (patch) | |
tree | 190d4a7be2068622c848dd6fe148cab76b655e32 | |
parent | Makefile: add test (diff) | |
download | void-eb9a39c5c471702f773aafe4cd47ba6375b5b7f3.tar.gz void-eb9a39c5c471702f773aafe4cd47ba6375b5b7f3.zip |
index.html: prevent button jumps
Diffstat (limited to '')
-rw-r--r-- | index.html | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -21,6 +21,13 @@ html, body { text-align: center; min-height: 100vh; } + +/* This is cool: https://stackoverflow.com/a/33298969/514684 + * Makes sure the button doesn't jump up. */ +#note:empty:after { + content: '\200B'; + visibility: hidden; +} </style> </head> <body> |