mirror of
https://github.com/fleetdm/fleet
synced 2026-04-24 15:07:29 +00:00
38 lines
479 B
SCSS
38 lines
479 B
SCSS
.action-button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
img {
|
|
position: relative;
|
|
}
|
|
|
|
.button--link {
|
|
font-weight: $regular;
|
|
}
|
|
|
|
&__remove {
|
|
img {
|
|
left: -4px;
|
|
}
|
|
}
|
|
|
|
&__delete {
|
|
img {
|
|
top: -1px;
|
|
left: 1px;
|
|
}
|
|
}
|
|
|
|
&__disabled {
|
|
@include disabled;
|
|
}
|
|
.component__tooltip-wrapper__tip-text {
|
|
text-align: center;
|
|
}
|
|
|
|
.premium-icon-tip {
|
|
position: relative;
|
|
top: 3px;
|
|
padding-right: $pad-xsmall;
|
|
}
|
|
}
|