diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-02-15 21:18:06 +0100 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2025-02-15 21:18:06 +0100 |
commit | 998c1777afeeb44ecf6ba2e735a4d6176a9b339e (patch) | |
tree | cd559a07a3a4a2e529947549f6352b6202031a23 /scss/main.scss | |
parent | 27400b0fce5d4ef3b7fd5ef4d25bac8f00754e33 (diff) | |
download | cerrado-998c1777afeeb44ecf6ba2e735a4d6176a9b339e.tar.gz cerrado-998c1777afeeb44ecf6ba2e735a4d6176a9b339e.tar.bz2 cerrado-998c1777afeeb44ecf6ba2e735a4d6176a9b339e.zip |
feat: Add tag and branch to log
Now it is possible to see tag and branch on the log page.
Diffstat (limited to 'scss/main.scss')
-rw-r--r-- | scss/main.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scss/main.scss b/scss/main.scss index 7a1fff2..51b7df7 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -183,3 +183,22 @@ pre { max-width: calc(100% - calc(2 * #{$spacer})); } } + +.ref { + padding: 2px; + margin: 2px; + color: white; + text-decoration: none; + + &:hover { + background: #70dc70; + } + + &.branch { + background: #25a525; + } + + &.tag { + background: #5874e2; + } +} |