2021-07-26 13:22:25 +02:00
|
|
|
/* IMPORT CUSTOM FONT */
|
2022-11-16 20:19:52 +01:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Inter:100,300,400,500,700&display=swap');
|
2021-07-26 13:22:25 +02:00
|
|
|
|
2020-02-13 23:43:20 +01:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
2020-03-04 23:14:54 +01:00
|
|
|
|
2022-11-16 20:19:52 +01:00
|
|
|
body {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
2022-02-10 20:08:34 +01:00
|
|
|
|
2021-07-26 13:22:25 +02:00
|
|
|
/* Truncate 2 lines utility */
|
2020-07-02 16:41:53 +02:00
|
|
|
.truncate-2-lines {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
line-height: 1.3;
|
2020-07-03 03:41:55 +02:00
|
|
|
height: 2.1rem;
|
2020-07-02 16:41:53 +02:00
|
|
|
}
|
2022-02-10 20:08:34 +01:00
|
|
|
|
2022-11-16 20:19:52 +01:00
|
|
|
.customSelect__menu {
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.css-4ljt47-MenuList {
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
padding-top: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
.css-4ljt47-MenuList::-webkit-scrollbar {
|
|
|
|
|
width: 6px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.css-4ljt47-MenuList::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: #0944b3;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.customSelect__option:focus {
|
|
|
|
|
background-color: #0944b391 !important;
|
|
|
|
|
}
|
|
|
|
|
.customSelect__option label {
|
|
|
|
|
color: #d6d6d6;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.css-1n7v3ny-option {
|
|
|
|
|
background-color: #0944b391 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.css-1n7v3ny-option:focus {
|
|
|
|
|
background-color: #0944b391 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.customSelect__option:hover {
|
|
|
|
|
background-color: #0944b391;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.css-26l3qy-menu {
|
|
|
|
|
border: 2px solid #0944b3;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background-color: #151515 !important;
|
|
|
|
|
}
|