Skip to content

Commit 4e846f8

Browse files
committed
Prepare .Button
1 parent 4705d03 commit 4e846f8

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

ux.symfony.com/assets/styles/app.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ $utilities: map-remove(
125125
// Components
126126
@import "components/Badge";
127127
@import "components/Banner";
128+
@import "components/Button";
128129
@import "components/Browser";
129130
@import "components/Changelog";
130131
@import "components/DataList";
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.Button {
2+
display: inline-flex;
3+
align-items: center;
4+
justify-items: flex-end;
5+
6+
border-radius: 1.5rem;
7+
padding: 0.75rem 1.5rem;
8+
gap: .75rem;
9+
10+
background: var(--bs-body-bg);
11+
color: var(--bs-body-color);
12+
}
13+
14+
.Button--dark {
15+
background: var(--bs-body-color);
16+
color: var(--bs-body-bg);
17+
color: #dee2e6;
18+
border: 1px solid #a6a0a0;
19+
}

ux.symfony.com/assets/styles/sections/_hero.scss

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22
padding-top: 5rem;
33
}
44

5-
.rainbow-emphasis {
6-
background: linear-gradient(113.84deg, #D65831 0%, #D2D631 36.52%, #31D673 71.83%, #315FD6 100%);
7-
-webkit-background-clip: text;
8-
-webkit-text-fill-color: transparent;
9-
font-style: normal;
10-
filter: brightness(102%) contrast(200%) drop-shadow(1px 1px 1px #0004);
11-
letter-spacing: 0;
12-
}
13-
145
.hero-background {
156
padding-block-start: 4rem;
167
}

0 commit comments

Comments
 (0)