rm unused

This commit is contained in:
Ildar Kamalov
2025-07-21 18:03:38 +03:00
parent 0a3ccc14a9
commit 25d9cb7fc6
4 changed files with 29 additions and 280 deletions

View File

@@ -27,19 +27,6 @@
}
}
.inactive {
opacity: 0.5;
}
.block {
display: block !important;
}
.smallIcon {
width: 16px;
height: 16px;
}
.scrollable {
&::-webkit-scrollbar {
-webkit-appearance: none;
@@ -54,22 +41,36 @@
}
}
.textUppercase {
text-transform: uppercase;
}
.textLowercase {
text-transform: lowercase;
}
.breakWord {
word-break: break-word;
display: inline-block;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: var(--white);
.desktop {
display: none;
@media (min-width: 1024px) {
display: block;
}
}
.mobile {
display: block;
@media (min-width: 1024px) {
display: none;
}
}
.visuallyHidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}

View File

@@ -46,7 +46,7 @@
.buttonLoader {
width: 24px;
height: 24px;
color: var(--permanent-white);
color: var(--gray-0);
}
.close {

View File

@@ -70,6 +70,6 @@
}
&_active {
font-weight: var(--weight-medium);
font-weight: var(--weight-semi-bold);
}
}

View File

@@ -35,255 +35,3 @@
}
}
}
.refresh {
display: flex;
justify-content: center;
align-items: center;
@media (min-width: 1024px) {
margin-right: 16px;
}
}
.desktop {
display: none;
@media (min-width: 1024px) {
display: block;
}
}
.mobile {
display: block;
@media (min-width: 1024px) {
display: none;
}
}
.buttonWrapper {
display: flex;
flex-direction: column;
@media (min-width: 768px) {
flex-direction: row;
}
a,
button {
&:not(:last-child) {
margin-bottom: 8px;
}
@media (min-width: 768px) {
&:not(:last-child) {
margin-bottom: 0;
margin-right: 24px;
}
}
}
}
.modalButton {
font-size: 16px;
line-height: 1.4;
}
.visuallyHidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.cardWrapper {
margin-bottom: 24px;
min-width: 0;
@media (min-width: 1024px) {
margin-bottom: 40px;
}
}
.cardGrid {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-gap: 24px;
@media (min-width: 1024px) {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
grid-gap: 40px;
}
}
.head {
display: flex;
flex-direction: column;
flex-wrap: wrap;
padding: 0;
margin-bottom: 24px;
@media (min-width: 1024px) {
flex-direction: row;
flex-wrap: nowrap;
margin-bottom: 40px;
}
}
.selectGrid {
width: 100%;
}
.filters {
display: flex;
justify-content: space-between;
@media (min-width: 1024px) {
justify-content: flex-end;
}
}
.selectFlex {
display: flex;
justify-content: space-between;
@media (min-width: 1024px) {
justify-content: flex-end;
}
}
.selectWrap {
display: grid;
grid-template-columns: minmax(100%, 1fr);
grid-template-rows: auto;
grid-gap: 8px;
@media (min-width: 768px) {
grid-template-columns: repeat(2, minmax(45%, 1fr));
grid-template-rows: auto;
}
@media (min-width: 1024px) {
grid-template-columns: repeat(3, minmax(30%, 1fr));
width: 100%;
grid-column-gap: 16px;
}
}
.selectPopover {
display: flex;
align-items: center;
justify-content: space-between;
height: 40px;
width: 100%;
margin-left: 16px;
padding: 10px 16px;
border: 1.5px solid var(--light-gray);
border-radius: 8px;
font-size: 14px;
@media (min-width: 1024px) {
width: 235px;
}
}
.selectFlow {
display: grid;
grid-template-columns: repeat(1, 100%);
grid-gap: 16px;
@media (min-width: 1024px) {
grid-template-columns: repeat(3, 200px);
}
&.desktop {
display: none;
@media (min-width: 1024px) {
display: grid;
}
}
}
.right {
display: flex;
margin: 0;
@media (min-width: 1024px) {
justify-content: flex-end;
margin-left: auto;
}
}
.title {
margin: 0 0 8px 0;
line-height: normal;
@media (min-width: 1024px) {
margin: 0 24px 0 0;
}
}
.mobileOnlyWrapper {
display: block;
@media (min-width: 1400px) {
display: none;
}
}
.tooltip {
padding: 16px;
font-size: 14px;
line-height: 21px;
font-weight: var(--fw-regular);
color: var(--default-main-text);
border-radius: 8px;
box-shadow: var(--main-box-shadow);
max-width: 281px;
cursor: default;
b {
color: var(--default-main-text);
font-weight: var(--fw-regular);
}
}
.warningNotification {
display: flex;
flex-direction: row;
color: var(--red);
margin-bottom: 16px;
svg {
margin-right: 8px;
}
}
.mobileFlex {
display: flex;
justify-content: space-between;
@media (min-width: 1024px) {
display: none;
}
}
.inline {
display: inline;
}