diff options
author | silverwind <me@silverwind.io> | 2023-05-28 20:04:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 18:04:35 +0000 |
commit | a2e5c3c9634793f375850b2d6ff1a5dbc669b98a (patch) | |
tree | a31158a2bd8cc7b71d5783f3572412d6b5d57d62 /web_src/css/index.css | |
parent | 1fa50f323ad538b86922b7bd549068b716c1b3e9 (diff) | |
download | gitea-a2e5c3c9634793f375850b2d6ff1a5dbc669b98a.tar.gz gitea-a2e5c3c9634793f375850b2d6ff1a5dbc669b98a.zip |
Replace Fomantic reset module with our own (#24948)
Replace the `reset` module with a modern version based on
[modern-normalize](https://github.com/sindresorhus/modern-normalize).
The only things I removed from that module are the `font-family` rules
we don't need. Otherwise, it's similar to Fomantic's reset, but with the
legacy IE stuff removed.
I documented every change done to the module.
Also this introduces a new `--tab-size` variable but it has no real
effect on code yet.
Diffstat (limited to 'web_src/css/index.css')
-rw-r--r-- | web_src/css/index.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/css/index.css b/web_src/css/index.css index c6690f3ff3..03f9d53a31 100644 --- a/web_src/css/index.css +++ b/web_src/css/index.css @@ -1,3 +1,4 @@ +@import "./modules/normalize.css"; @import "./modules/animations.css"; @import "./modules/tippy.css"; @import "./modules/modal.css"; |