0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 12:52:42 +00:00

Initial pass at visibility functionality

This commit is contained in:
G.Ambatte
2022-08-28 23:46:19 +12:00
parent 0811da79c4
commit 4bb5e96c42
3 changed files with 82 additions and 16 deletions

View File

@@ -74,4 +74,27 @@
}
}
}
h1 {
cursor: pointer;
&.active {
color: #58180D;
}
&.active::before {
content: '\f107';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 0.6cm;
padding-right: 0.5em;
}
&.inactive {
color: #707070;
}
&.inactive::before {
content: '\f105';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 0.6cm;
padding-right: 0.5em;
}
}
}