diff options
| author | tusooa <tusooa@kazv.moe> | 2023-01-13 00:37:42 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-01-13 00:37:42 -0500 |
| commit | a28032fa58ff341b8815a0651d621ed358efd168 (patch) | |
| tree | 7069f08f7fce91642ffdd10b8c79cb986cd95f72 /src/components/user_card | |
| parent | 7dc22774532872fc99aa7768cf299ab623e9d155 (diff) | |
Disable no-shorthand for certain props for better readability
Diffstat (limited to 'src/components/user_card')
| -rw-r--r-- | src/components/user_card/user_card.scss | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/components/user_card/user_card.scss b/src/components/user_card/user_card.scss index 942673c4..d56b6672 100644 --- a/src/components/user_card/user_card.scss +++ b/src/components/user_card/user_card.scss @@ -43,11 +43,10 @@ mask-composite: exclude; background-size: cover; mask-size: 100% 60%; - border-radius: - calc(var(--__roundnessTop, --panelRadius) - 1px) - calc(var(--__roundnessTop, --panelRadius) - 1px) - calc(var(--__roundnessBottom, --panelRadius) - 1px) - calc(var(--__roundnessBottom, --panelRadius) - 1px); + border-top-left-radius: calc(var(--__roundnessTop, --panelRadius) - 1px); + border-top-right-radius: calc(var(--__roundnessTop, --panelRadius) - 1px); + border-bottom-left-radius: calc(var(--__roundnessBottom, --panelRadius) - 1px); + border-bottom-right-radius: calc(var(--__roundnessBottom, --panelRadius) - 1px); background-color: var(--profileBg); z-index: -2; |
