Make large border-radius work well with linear-gradient

There was an issue with the usage of larger border-radius values. It didn't display properly without "background-clip: content-box, border-box;". This make it works.
MTELEVIRA-43
This commit is contained in:
Daniel Muyshond 2024-01-19 14:08:08 +01:00
parent ba010e5a3b
commit 4fdf88299a
1 changed files with 1 additions and 0 deletions

View File

@ -329,6 +329,7 @@ div.cell .cell--body {
border-bottom: 1px dashed #ccc;
a {
background-image: linear-gradient(#fff 0, #fcfcfc 100%);
background-clip: content-box, border-box;
&:hover {
background-image: linear-gradient(#fcfcfc 0, #fff 100%);
color: $link-color;