-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gpth-settings): Fix the
Font
tab section and make mobile screen…
… improvements (#53) - Fix the broken style of the "GPThemes Customization" font tab section (#53) Changes summary: - Addressed a visual issue: - Restored the correct styling to the font tab section, ensuring a consistent and visually appealing user experience.
- Loading branch information
1 parent
5d75026
commit c4e6ba5
Showing
7 changed files
with
85 additions
and
24 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
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
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,10 +1,17 @@ | ||
.fonts { | ||
&__props { | ||
display: grid; | ||
gap: 1.5rem; | ||
} | ||
|
||
&__bigcards-wrapper, | ||
&__smallcards-wrapper { | ||
--gap: 0.65rem; | ||
|
||
grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr)); | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
align-items: center; | ||
gap: calc(var(--gap) * 2) var(--gap); | ||
// gap: calc(var(--gap) * 2) var(--gap); | ||
gap: var(--gap); | ||
} | ||
} |
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,7 +1,7 @@ | ||
.gpth-assets { | ||
&__custom-width { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); | ||
grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr)); | ||
gap: 1rem 0.5rem; | ||
} | ||
} |