scss: apply -border-radius to loading and error divs (#60605)

This commit is contained in:
Corentin Sechet 2022-04-22 15:48:31 +02:00
parent 3f34bc0405
commit 971a76600c
1 changed files with 2 additions and 0 deletions

View File

@ -450,11 +450,13 @@ div.cell div.loading::after {
width: 0px;
background: #eee;
height: 100%;
border-radius: $cell-border-radius;
-webkit-animation: cell-loading-pulse 2s linear infinite alternate;
animation: cell-loading-pulse 2s linear infinite alternate;
}
div.cell div.loading.error-loading {
border-radius: $cell-border-radius;
background: #f44;
}