feat(main): Add base theme: This is the falcon theme out of the box.

This is falcon v3.1.2
This commit is contained in:
2025-11-18 14:04:01 +01:00
parent 3a7f2db331
commit f4f4bcad1d
604 changed files with 49818 additions and 0 deletions

View File

@ -0,0 +1,2 @@
@import "listing-display/index";
@import "filters/index";

View File

@ -0,0 +1 @@
@import "search-filters";

View File

@ -0,0 +1,6 @@
.search-filters {
@include media-breakpoint-down(sm) {
border: 0;
border-radius: 0;
}
}

View File

@ -0,0 +1,28 @@
.display-toggle {
&__link {
width: 1.7em;
height: 1.7em;
font-size: rem-calc(18px);
line-height: 1.7em;
color: $gray-900;
text-align: center;
background: $gray-100;
border-radius: 50%;
@include hover-focus() {
color: $gray-900;
background: $gray-200;
}
&.active {
color: $white;
background: $primary;
}
}
&__icon {
font-size: inherit;
line-height: inherit;
}
}

View File

@ -0,0 +1 @@
@import "display-toggle";