17 lines
285 B
SCSS
17 lines
285 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
@use "../../utils/mixins";
|
|
|
|
.ds4-check {
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
&:hover {
|
|
@include mixins.foundry-highlight-text-shadow;
|
|
}
|
|
}
|