Replace LineAwesome with Tabler icons in some more places

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2021-12-16 23:05:33 +01:00
parent efe74c3ddd
commit 99e3ec9ff9
8 changed files with 24 additions and 6 deletions

View file

@ -746,6 +746,15 @@
.column-settings__row {
.text-btn {
margin-bottom: 15px;
&.column-header__setting-btn {
display: flex;
align-items: center;
.svg-icon {
margin-right: 10px;
}
}
}
}

View file

@ -741,17 +741,19 @@ code {
}
}
.input .row > .fa-times-circle {
.input .row > .svg-icon.delete-field {
height: 20px;
width: 20px;
position: absolute;
right: 15px;
right: 13px;
cursor: pointer;
color: $error-red;
transform: translateY(-9px);
transform: translateY(-11px);
}
.input .row > .input.with_label + .fa-times-circle {
right: 7px;
transform: translateY(9px);
.input .row > .input.with_label + .svg-icon.delete-field {
right: 5px;
transform: translateY(7px);
}
.site-preview {
@ -798,12 +800,19 @@ code {
margin: 10px 0 0;
.button {
display: flex;
align-items: center;
border: 0;
background: transparent;
&:hover {
color: var(--primary-text-color);
}
.svg-icon {
height: 20px;
width: 20px;
}
}
}