Align before pseudo component by using flex (and not width and padding)

This commit is contained in:
Jean-Baptiste Bellet
2022-11-30 15:09:50 +01:00
parent faf106b282
commit bf073599d7

View File

@@ -49,6 +49,15 @@ table td.actions {
// Special for icons in the actions column
[class*="icon-"] {
color: $v2-blue;
display: flex;
justify-content: center;
align-items: center;
&:before {
width: auto;
padding: 0;
}
&.no-text {
border: 2px solid $v2-blue-light;
background-color: $v2-blue-lightest;