Add fix for chat + jackpot logo

This commit is contained in:
Hepatica
2024-02-18 17:42:20 +01:00
parent 3a9ef1d497
commit 4d73c6c370
5 changed files with 60 additions and 8 deletions

View File

@@ -191,4 +191,4 @@
.mention-message {
background-color: rgb(169, 113, 0);
}
}

View File

@@ -117,7 +117,17 @@
color: #fff;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size: 91px;
font-size:91px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
}
.title-jackpot {
color: #fff;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size:80px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
@@ -157,6 +167,11 @@
margin: 1% 6.6% 1% 4.7%;
}
.line__img__jackpot {
display: flex;
margin: 1% 6.6% 1% 4.7%;
}
.display-firstline {
display: flex;
}
@@ -178,6 +193,23 @@
left: 2%;
}
.line__btn__jackpot {
border-radius: 21px;
background: #FFF;
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
color: #000;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family: Montserrat Alternates;
font-size: 36px;
font-weight: 700;
padding: 11px 11px;
text-decoration: none;
text-transform: uppercase;
position: relative;
bottom: 4%;
left: 6%;
}
.line__btn--elm {
color: #000;
font-size: 38px;
@@ -377,10 +409,21 @@
}
}
@media screen and (min-height: 910px) {
@media screen and (min-height: 820px) {
.chat {
height: 87vh !important;
}
}
@media screen and (max-width: 1850px) {
.line__img__jackpot {
display: none !important;
}
}
/*
@media screen and (min-height: 800) {
.chat {
height: 85vh !important;
}
} */
/* /Media */

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -6,7 +6,7 @@ export default [
},
{
id: 2,
title: 'кейсы',
title: 'джекпот',
players: 0
},
{

View File

@@ -60,18 +60,18 @@
>
<div :class="'linecontent-' + mode.id">
<div class="container">
<h1 class="title-firstline">{{ mode.title }}</h1>
<h1 class="title-jackpot">{{ mode.title }}</h1>
<!-- <a href="#" class="line__btn">play <span class="line__btn--elm">></span></a> -->
<a
href="#"
@click="$router.push({ name: 'jackpot' })"
class="line__btn"
class="line__btn__jackpot"
>play <span class="line__btn--elm">></span></a
>
</div>
</div>
<div class="line__img">
<img src="@/assets/icons-gamemodes/case-icon.png" />
<div class="line__img__jackpot">
<img src="@/assets/icons-gamemodes/jackpot_icon.svg" />
</div>
</li>
</ul>