Upgrade to webpack 5

This commit is contained in:
2026-03-21 23:28:20 +01:00
parent 2772d82d2e
commit 3addbc1a4e
8 changed files with 942 additions and 1504 deletions
@@ -7,7 +7,7 @@ $chat-log-tabs-height: 30px;
$chat-log-buttons-width: 40px;
$resizer-size: 12px;
$resizer-offset: $resizer-size / 2;
$resizer-offset: $resizer-size * 0.5;
.chat-log {
display: flex;
@@ -5,11 +5,11 @@ $slider-fill: #eaeaea;
$bar-height: 8px;
$bar-control-size: 20px;
$bar-border-radius: $bar-height / 2;
$bar-border-radius: $bar-height * 0.5;
:host {
display: inline-block;
padding: 2px ($bar-control-size - $bar-height + 10px) / 2;
padding: 2px ($bar-control-size - $bar-height + 10px) * 0.5;
width: 100%;
&:focus {
@@ -61,8 +61,8 @@ $bar-border-radius: $bar-height / 2;
.slider-bar-control {
position: absolute;
left: -$bar-control-size / 2;
top: -($bar-control-size - $bar-height) / 2;
left: -$bar-control-size * 0.5;
top: -($bar-control-size - $bar-height) * 0.5;
width: $bar-control-size;
height: $bar-control-size;
border-radius: 50%;