Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/blw-33-sass-tests-schreiben' int…
Browse files Browse the repository at this point in the history
…o blw-34-text-alerts

# Conflicts:
#	dist/css/blower.min.css
#	package-lock.json
  • Loading branch information
felix-berlin committed Sep 9, 2024
2 parents 6eab7e4 + bf3b391 commit 2994125
Show file tree
Hide file tree
Showing 7 changed files with 1,253 additions and 1,199 deletions.
39 changes: 35 additions & 4 deletions dist/css/blower.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
line-height: 1.5;
}
body {
min-height: 100vh;
min-height: 100svh;
}
Expand Down Expand Up @@ -141,8 +143,6 @@
display: grid;
grid-template-columns: 1fr;
grid-template-areas: "sidebar" var(--area-row-first) "main" var(--area-row-last);
min-height: 100vh;
min-height: 100svh;
}
@media screen and (min-width: 768px) {
.theme-dashboard {
Expand All @@ -159,6 +159,10 @@
--size-sidebar: 300px;
}
}
.theme-dashboard {
min-height: 100vh;
min-height: 100svh;
}
.theme-dashboard .layout-sidebar {
grid-area: sidebar;
padding: var(--spacing-segments);
Expand Down Expand Up @@ -613,12 +617,12 @@
--spacing-button-vertical: 0.75rem;
--font-size-button: 1.25rem;
}
.button--outline {
.button--outline, .button--text {
--color-button-text: var(--color-button-background);
--color-button-border: var(--color-button-background);
background-color: transparent;
}
.button--outline:where(.button--secondary, .button--tertiary, .button--light) {
.button--outline:where(.button--secondary, .button--tertiary, .button--light), .button--text:where(.button--secondary, .button--tertiary, .button--light) {
--color-button-text: #0f172a;
}
.button:has(.is-icon), .button.has-icon {
Expand All @@ -628,6 +632,28 @@
.button--rounded {
--border-radius-button: 200px;
}
.button--text {
--color-button-border: transparent;
--spacing-button-horizontal: 0.375rem;
--spacing-button-vertical: 0.25rem;
}
.button--image {
--border-width-button: 0;
padding: 0;
border-radius: calc(infinity * 1px);
}
.button--image img {
border-radius: calc(infinity * 1px);
-o-object-fit: cover;
object-fit: cover;
}
.button--unset {
padding-inline: unset;
background: unset;
border: unset;
color: unset;
font-size: unset;
}
.button-group {
display: inline-flex;
}
Expand Down Expand Up @@ -1063,6 +1089,9 @@
border-radius: inherit;
}
.form__input[type=checkbox]:not(.is-switch)::before {
clip-path: circle();
}
.form__input[type=checkbox]:checked:not(.is-switch)::before {
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.form__input[type=checkbox].is-switch {
Expand Down Expand Up @@ -1205,6 +1234,8 @@
background-color: #fff;
border-radius: var(--border-radius-modal);
box-shadow: var(--box-shadow-modal);
}
.modal__content {
max-height: 95vh;
max-height: 95svh;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/css/blower.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 2994125

Please sign in to comment.