This commit is contained in:
Adina Țeudan 2021-10-04 15:12:04 +03:00
parent 73ea79e64e
commit 88f7d46b73
4 changed files with 9 additions and 6 deletions

View File

@ -52,7 +52,7 @@
iqser-icon-button,
iqser-chevron-button,
.user-button, // TODO
.user-button,
iqser-circle-button {
position: relative;
display: flex;

View File

@ -70,6 +70,7 @@
}
.stats-subtitle {
margin-top: 4px;
display: flex;
> div {

View File

@ -33,8 +33,7 @@ a {
transition: color 0.1s;
&:hover {
color: var(--iqser-primary);
filter: brightness(140%);
color: var(--iqser-primary-2);
}
&.with-underline {

View File

@ -23,7 +23,8 @@
display: contents;
}
> div, .cell {
> div,
.cell {
display: flex;
flex-direction: column;
justify-content: center;
@ -64,7 +65,8 @@
}
}
&.disabled > div, &.disabled .cell {
&.disabled > div,
&.disabled .cell {
background-color: var(--iqser-grey-2);
color: var(--iqser-disabled);
@ -117,7 +119,8 @@
}
&:hover:not(.disabled) {
> div, > * > div {
> div,
> * > div {
background-color: var(--iqser-not-disabled-table-item);
}
}