Allow for styling

This commit is contained in:
Michał Gdula 2023-09-27 13:59:31 +01:00
parent 3496a3bbe9
commit b4bc8c61ec
11 changed files with 161 additions and 119 deletions

View file

@ -64,12 +64,11 @@
&:hover
cursor: pointer
color: var(--primary)
&.disabled, &:disabled
color: var(--foreground-dim)
cursor: unset
&:disabled, &[disabled], &.disabled
color: var(--foreground-gray)
cursor: default
.pill__critical
color: var(--danger)

View file

@ -1,5 +1,5 @@
.info-container
padding: 0.5rem 0 0 0.5rem
padding: 0.5rem 0 0.5rem 0.5rem
width: 27rem
position: absolute
top: 0

View file

@ -75,9 +75,11 @@ main
main
margin: 0 0.5rem
header
position: sticky
top: 0
// This is very broken, as it breaks when you open any context menu/popup
// I need to fix this at some point as it looks really nice
//header
// position: sticky
// top: 0
.error-page
min-height: 100%

View file

@ -26,8 +26,8 @@
--red-transparent: rgba(182, 100, 103, 0.1)
--orange: rgb(217, 140, 95)
--orange-transparent: rgba(217, 140, 95, 0.1)
--yellow: rgb(217, 188, 140)
--yellow-transparent: rgba(217, 188, 140, 0.1)
--yellow: rgb(198, 185, 166)
--yellow-transparent: rgba(198, 185, 166, 0.1)
--green: rgb(140, 151, 125)
--green-transparent: rgba(140, 151, 125, 0.1)
--blue: rgb(141, 163, 185)