add flex-md-shrink-50

This commit is contained in:
Barış Soner Uşaklı
2026-02-19 13:55:02 -05:00
parent 309d300391
commit ea382b7101
2 changed files with 16 additions and 2 deletions

View File

@@ -107,10 +107,10 @@
"nodebb-plugin-spam-be-gone": "2.3.2",
"nodebb-plugin-web-push": "0.7.6",
"nodebb-rewards-essentials": "1.0.2",
"nodebb-theme-harmony": "2.2.18",
"nodebb-theme-harmony": "2.2.19",
"nodebb-theme-lavender": "7.1.21",
"nodebb-theme-peace": "2.2.51",
"nodebb-theme-persona": "14.2.10",
"nodebb-theme-persona": "14.2.12",
"nodebb-widget-essentials": "7.0.42",
"nodemailer": "8.0.1",
"nprogress": "0.2.0",

View File

@@ -211,4 +211,18 @@ img.emoji {
transform: scale(1.005);
background-color: var(--bs-tertiary-bg);
}
}
@include media-breakpoint-up(md) {
.flex-md-shrink-50 {
flex: 1 1 50% !important;
min-width: 50% !important;
}
}
@include media-breakpoint-down(md) {
.flex-md-shrink-50 {
flex: 1 1 100%;
min-width: 0;
}
}