53 lines
966 B
SCSS
53 lines
966 B
SCSS
@use '../variables' as *;
|
|
|
|
.launcher {
|
|
entry {
|
|
background: $bg-color;
|
|
color: $fg-color;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
&:focus {
|
|
outline: 2px solid $bg-color;
|
|
}
|
|
}
|
|
|
|
.application {
|
|
padding: 10px;
|
|
background-color: $bg-color;
|
|
border-radius: 8px;
|
|
transition: background-color 0.2s ease;
|
|
|
|
&:hover {
|
|
background-color: $bg-color;
|
|
}
|
|
|
|
image {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
box {
|
|
.name {
|
|
color: $fg-color;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.description {
|
|
color: $fg-color;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.not-found {
|
|
color: $fg-color;
|
|
font-size: 14px;
|
|
|
|
image {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
} |