umami/components/input/LanguageButton.module.css

36 lines
576 B
CSS
Raw Normal View History

2020-10-02 21:15:42 +02:00
.menu {
display: flex;
flex-flow: row wrap;
min-width: 600px;
2020-10-02 21:15:42 +02:00
max-width: 100vw;
padding: 10px;
background: var(--base50);
z-index: var(--z-index100);
border-radius: 5px;
border: 1px solid var(--border-color);
margin-left: 10px;
2020-10-02 21:15:42 +02:00
}
.item {
display: flex;
align-items: center;
justify-content: space-between;
2021-02-02 07:40:52 +01:00
min-width: calc(100% / 3);
border-radius: 5px;
padding: 5px 10px;
}
.item:hover {
background: var(--base75);
cursor: pointer;
2020-10-03 19:53:06 +02:00
}
.selected {
font-weight: 700;
background: var(--blue100);
2020-10-03 19:53:06 +02:00
}
.icon {
color: var(--primary400);
2020-10-02 21:15:42 +02:00
}