Skip to content

Commit

Permalink
fix(styles): fix some UI quirks on firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Apr 15, 2021
1 parent 4eaa658 commit 5d9da80
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-radius: 4px;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
background-color: $color-white;
overflow-x: hidden;
overflow-y: auto;

.bimdata-search-bar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
>
<TextBox
:text="item[labelProp]"
:maxLength="30"
:maxLength="24"
cutOn="end"
:tooltip="false"
/>
Expand Down
18 changes: 9 additions & 9 deletions src/components/generic/flipable-card/FlipableCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
z-index: 0;
}
}
}

&.flipped {
transform: rotateY(180deg);
.card.flipped {
transform: rotateY(180deg);

&__face {
&--front {
z-index: 0;
}
.card__face {
&--front {
z-index: 0;
}

&--back {
z-index: 1;
}
&--back {
z-index: 1;
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/generic/generic-modal/GenericModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

&__btn-close {
position: absolute;
top: 0;
right: 0;
top: $spacing-unit/2;
right: $spacing-unit/2;
color: $color-tertiary-dark;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
height: 24px;
padding: $spacing-unit/2 $spacing-unit;
background-color: $color-primary;
color: $color-white;
line-height: 12px;
text-transform: uppercase;
color: $color-white;
}

&:deep() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
.project-users-manager__list-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
padding-bottom: $spacing-unit/2;
overflow-x: hidden;
overflow-y: auto;
Expand Down

0 comments on commit 5d9da80

Please sign in to comment.