Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions frontend/src/styles/vendor.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
@import "fontawesome-5"; // the screenshotting library has some issues with css layers

/* fontawesome icon styles do not respect the hidden class from the hidden layer.
* By having these rules outside any layer we make sure that the display none is
* correctly applied when an element possesses both a .fa* class and the hidden class */
.fas.hidden,
.fab.hidden,
.fa.hidden,
.far.hidden {
display: none;
}

// same for invisible
.fas.invisible,
.fab.invisible,
.fa.invisible,
.far.invisible {
opacity: 0;
pointer-events: none;
visibility: hidden;
}

@import "normalize.css" layer(normalize);
@layer vendor {
@import "slim-select/styles";
Expand Down
Loading