|
|
@ -13,9 +13,10 @@ |
|
|
|
margin-top: -0.5rem; |
|
|
|
|
|
|
|
.info-message { |
|
|
|
background-color: rgba(0, 0, 0, $alpha-hover); |
|
|
|
background-color: rgba(var(--palette-foreground-text), 0.05); |
|
|
|
border-radius: 2rem; |
|
|
|
font-size: 80%; |
|
|
|
max-width: 100%; |
|
|
|
|
|
|
|
.a { |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
@ -30,3 +31,13 @@ |
|
|
|
line-height: 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
:host-context(.is-dark-theme) { |
|
|
|
main { |
|
|
|
.info-message-container { |
|
|
|
.info-message { |
|
|
|
background-color: rgba(var(--palette-foreground-text-dark), 0.05); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|