ds4/scss/components/actor/_check.scss
Johannes Loher 3bc7c7819b
Some checks failed
ci/woodpecker/pr/checks Pipeline failed
chore: reformat with 2 spaces and single quotes
2023-07-10 22:23:33 +02:00

35 lines
542 B
SCSS

/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
@use '../../utils/mixins';
.ds4-check {
background: transparent;
border: none;
cursor: pointer;
display: flex;
font-family: inherit;
font-size: inherit;
justify-content: space-between;
line-height: inherit;
margin: 0;
&:focus {
box-shadow: none;
}
&:hover {
@include mixins.foundry-highlight-text-shadow;
box-shadow: none;
}
&[disabled] {
cursor: auto;
&:hover {
text-shadow: none;
}
}
}