2023-02-27 23:28:37 +01:00
|
|
|
$black: #454545;
|
2023-03-10 16:03:29 +01:00
|
|
|
$max-width: 470px;
|
2023-02-27 23:28:37 +01:00
|
|
|
|
2023-03-02 05:30:46 +01:00
|
|
|
[lang="en"] {
|
|
|
|
font-family: "Kanit Regular";
|
|
|
|
}
|
|
|
|
|
2023-02-27 23:28:37 +01:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html body {
|
|
|
|
font-family: "Kanit Regular";
|
|
|
|
color: $black;
|
|
|
|
height: 85%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content {
|
|
|
|
margin: 0 auto;
|
2023-03-10 16:03:29 +01:00
|
|
|
width: $max-width;
|
2023-02-27 23:28:37 +01:00
|
|
|
height: 100%;
|
|
|
|
|
2023-03-10 16:03:29 +01:00
|
|
|
@media screen and (max-width: $max-width) {
|
2023-02-27 23:28:37 +01:00
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content .header {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin: 25px 0 25px 0;
|
|
|
|
|
|
|
|
.image {
|
|
|
|
height: 78px;
|
|
|
|
width: 78px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content .row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2023-03-02 05:30:46 +01:00
|
|
|
body .root .content .row.title {
|
|
|
|
display: flex;
|
|
|
|
place-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content .row.dropdown-row {
|
|
|
|
.react-select.language {
|
|
|
|
text-align: right;
|
|
|
|
li:first-child { font-family: "Vazirmatn Regular"; }
|
|
|
|
li:last-child { font-family: "Kanit Regular"; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content ul.body {
|
|
|
|
clear: both;
|
|
|
|
list-style-type: none;
|
|
|
|
height: 400px;
|
|
|
|
padding: 0;
|
2023-03-12 23:21:41 +01:00
|
|
|
scrollbar-gutter: stable both-edges;
|
2023-03-02 05:30:46 +01:00
|
|
|
|
|
|
|
/* Height of 625px, or less */
|
|
|
|
@media screen and (max-height: 625px) {
|
2023-03-08 04:48:57 +01:00
|
|
|
height: 330px;
|
2023-03-02 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Height of 595px, or less */
|
|
|
|
@media screen and (max-height: 595px) {
|
2023-03-08 04:48:57 +01:00
|
|
|
height: 310px;
|
2023-03-02 05:30:46 +01:00
|
|
|
}
|
|
|
|
}
|