dots/ags/styles/components/_clipboard.scss

53 lines
935 B
SCSS

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