- added 'bandi disponibili' page;

- improved some styles and displaying data in tables;
This commit is contained in:
Vitalii Kiiko
2024-09-23 16:55:28 +02:00
parent bbf117eb9b
commit 2341b9ff62
10 changed files with 266 additions and 75 deletions

View File

@@ -10,7 +10,12 @@
font-style: normal;
font-weight: 600;
line-height: normal;
text-align: center;
}
.appPageLogin__wrapper {
h1 {
text-align: center;
}
}
}
@@ -223,4 +228,32 @@
gap: 24px;
padding: 24px 0 48px;
flex-wrap: wrap;
}
.appPageSection__tableActions {
display: flex;
gap: 24px;
padding: 0;
flex-wrap: wrap;
}
.appPageSection__addToFavourites {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: none;
background-color: var(--message-info-color);
color: white;
padding: 0;
&:hover {
cursor: pointer;
}
&[disabled] {
background-color: var(--message-info-background);
}
}