keanu-weblite/src/assets/css/vendors/_v-emoji-picker.scss

23 lines
531 B
SCSS
Raw Normal View History

@use "vuetify/settings" as *;
@use "sass:map";
2025-05-12 17:15:11 +02:00
.v3-emoji-picker {
width: 100%;
background-color: #ffffff;
2022-05-16 14:11:55 +00:00
margin-top: 15px;
2025-05-12 17:15:11 +02:00
box-shadow: none;
height: 100%;
flex: 1 1 100%;
2022-03-21 07:50:31 +00:00
2025-05-12 17:15:11 +02:00
.v3-emojis button {
@media #{map.get($display-breakpoints, 'sm')} {
2025-05-12 17:15:11 +02:00
flex-basis: 10% !important;
max-width: 10% !important;
}
@media #{map.get($display-breakpoints, 'md-and-up')} {
2025-05-12 17:15:11 +02:00
flex-basis: 6.25% !important;
max-width: 6.25% !important;
}
2022-03-21 07:50:31 +00:00
}
}