Use flex gap instead of margin right in tables

This commit is contained in:
Adina Țeudan 2024-04-11 18:25:01 +03:00
parent 005167487d
commit fc06bcc31d

View File

@ -8,10 +8,7 @@
flex: 1;
align-items: center;
justify-content: flex-end;
> *:not(:last-child) {
margin-right: 10px;
}
gap: 10px;
}
.header-item {
@ -23,6 +20,7 @@
border-bottom: 1px solid var(--iqser-separator);
box-sizing: border-box;
padding: 0 24px;
gap: 10px;
.header-title {
display: flex;
@ -34,17 +32,10 @@
padding: 0 24px 0 10px;
}
> *:not(:last-child) {
margin-right: 10px;
}
.actions {
display: flex;
align-items: center;
justify-content: flex-end;
> *:not(:last-child) {
margin-right: 16px;
}
gap: 16px;
}
}