dots/ags/styles/components/_clipboard.scss
2025-05-02 22:05:06 +02:00

57 lines
1000 B
SCSS

@use '../../../theme_colors.scss' as *;
.clipboard {
entry {
background: $base0B;
color: $base00;
padding: 8px 12px;
border: none;
margin-bottom: 6px;
&:focus {
outline: 2px solid $base00;
}
}
.entry.primary {
background: $base00;
&:hover>.content {
color: $base0B;
}
}
.entry {
padding: 10px;
background: $base0B;
border-radius: 8px;
transition: background 0.2s ease;
&:hover {
background: $base00;
>.content {
color: $base0B;
}
}
.content {
color: $base00;
font-size: 14px;
font-weight: 600;
}
}
.not-found {
background: $base0B;
color: $base00;
font-size: 14px;
padding: 10px;
border-radius: 8px;
image {
margin-bottom: 8px;
}
}
}