[SHOPTIME-3428] 독일 / Player / Sold Out Text 길이 넘침

[원인] SOLDOUT 번역본 단어 길이가 길어서 사이즈가 맞지않음

[대책] 독일국가에서만 font-size 조절
This commit is contained in:
고동영
2024-11-26 12:19:12 +09:00
parent 4c61572ec3
commit f759e96722
2 changed files with 12 additions and 2 deletions

View File

@@ -35,13 +35,17 @@
}
// sold out
> div {
.soldout {
.position(@position: absolute, @top: 0, @right: 0);
.flex();
.size(@w: 200px, @h: 200px);
background-color: rgba(26, 26, 26, 0.6);
font-weight: bold;
font-size: 36px;
&.de {
font-size: 27px;
}
}
}