-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement header styles for builder-io (#1497)
## Description ## References ### Jira-link: <!-- Put link to your task in Jira here --> https://virtocommerce.atlassian.net/browse/VCST-2202 ### Artifact URL: https://vc3prerelease.blob.core.windows.net/packages/vc-theme-b2b-vue-2.12.0-pr-1497-3ed4-3ed492d7.zip
- Loading branch information
1 parent
b5f49c1
commit 684a647
Showing
3 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
@use "vendors/swiper"; | ||
@use "vendors/builder-io"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
.builder-block { | ||
.vc-container { | ||
--body-bg-color: transparent; | ||
} | ||
|
||
h1 { | ||
@apply text-2xl tracking-wide font-bold uppercase; | ||
|
||
@media (min-width: theme("screens.lg")) { | ||
@apply text-3xl; | ||
} | ||
} | ||
|
||
h2 { | ||
@apply text-xl tracking-wide font-bold uppercase; | ||
|
||
@media (min-width: theme("screens.lg")) { | ||
@apply text-2xl; | ||
} | ||
} | ||
|
||
h3 { | ||
@apply text-lg tracking-wide font-bold uppercase; | ||
|
||
@media (min-width: theme("screens.lg")) { | ||
@apply text-xl; | ||
} | ||
} | ||
|
||
h4 { | ||
@apply text-base font-bold uppercase; | ||
|
||
@media (min-width: theme("screens.lg")) { | ||
@apply text-lg; | ||
} | ||
} | ||
|
||
h5 { | ||
@apply text-base font-bold uppercase; | ||
} | ||
|
||
h6 { | ||
@apply text-base font-bold uppercase; | ||
} | ||
|
||
p { | ||
@apply text-base; | ||
} | ||
} |