Fix bootstrap breakpoints

This commit is contained in:
Chocobozzz 2025-01-09 11:03:45 +01:00
parent c714d0a69a
commit 7dfdc843a8
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 2 additions and 12 deletions

View File

@ -1,5 +1,6 @@
@use '_variables' as *;
@use '_mixins' as *;
@use '_bootstrap-variables' as *;
.notification-row {
display: flex;

View File

@ -99,14 +99,6 @@ my-edit-button {
}
}
@media screen and (min-width: breakpoint(lg)) {
:host-context(.main-col:not(.expanded)) {
.video-channel-buttons {
float: right;
}
}
}
@media screen and (min-width: $small-view) {
.video-channel-buttons {
float: right;

View File

@ -1,6 +1,7 @@
@use 'sass:math';
@use '_variables' as *;
@use '_mixins' as *;
@use '_bootstrap-variables' as *;
@mixin miniature-name {
transition: color 0.2s;
@ -157,10 +158,6 @@
}
}
@media screen and (min-width: #{breakpoint(xm)}) {
column-gap: 15px;
}
@media screen and (min-width: #{breakpoint(fhd)}) {
column-gap: 2%;
}