ags/styles/components/_launcher.scss

61 lines
1.1 KiB
SCSS
Raw Permalink Normal View History

2025-02-13 21:58:31 +01:00
@use '../colors' as *;
2025-02-06 12:05:55 +01:00
.launcher {
entry {
2025-02-15 17:59:27 +01:00
background: $primary;
color: $onPrimary;
2025-02-06 12:05:55 +01:00
padding: 8px 12px;
border: none;
margin-bottom: 6px;
&:focus {
2025-02-15 17:59:27 +01:00
outline: 2px solid $onPrimary;
2025-02-06 12:05:55 +01:00
}
}
.application {
padding: 10px;
2025-02-15 17:59:27 +01:00
background: $primary;
2025-02-06 12:05:55 +01:00
border-radius: 8px;
2025-02-13 21:58:31 +01:00
transition: background 0.2s ease;
2025-02-06 12:05:55 +01:00
&:hover {
2025-02-15 17:59:27 +01:00
background: $onPrimary;
box>.name, box>.description {
color: $primary;
}
2025-02-06 12:05:55 +01:00
}
image {
margin-right: 12px;
}
box {
.name {
2025-02-15 17:59:27 +01:00
color: $onPrimary;
2025-02-06 12:05:55 +01:00
font-size: 14px;
font-weight: 600;
}
.description {
2025-02-15 17:59:27 +01:00
color: $onPrimary;
2025-02-06 12:05:55 +01:00
font-size: 12px;
}
}
}
.not-found {
2025-02-15 17:59:27 +01:00
background: $primary;
color: $onPrimary;
2025-02-06 12:05:55 +01:00
font-size: 14px;
2025-02-15 17:59:27 +01:00
padding: 10px;
border-radius: 8px;
2025-02-06 12:05:55 +01:00
image {
margin-bottom: 8px;
}
}
2025-02-13 21:58:31 +01:00
}