-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
66 additions
and
2 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
4 changes: 2 additions & 2 deletions
4
public_html/wp-content/themes/wporg-events-2023/parts/front-page/contributors.html
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
31 changes: 31 additions & 0 deletions
31
public_html/wp-content/themes/wporg-events-2023/postcss/base/breakpoints.pcss
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,31 @@ | ||
/* | ||
* Adapted from upstream SASS files. These assume a desktop-first approach, since that lends itself better to the Site Editor. | ||
*/ | ||
|
||
|
||
/* | ||
* Gutenberg | ||
* @link https://github.com/WordPress/gutenberg/blob/trunk/packages/base-styles/_breakpoints.scss | ||
*/ | ||
@custom-media --xhuge (min-width: 1920px); | ||
@custom-media --huge (min-width: 1440px); | ||
@custom-media --wide (min-width: 1280px); | ||
@custom-media --xlarge (min-width: 1080px); | ||
@custom-media --large (min-width: 960px); /* admin sidebar auto folds */ | ||
@custom-media --medium (min-width: 782px); /* adminbar goes big */ | ||
@custom-media --small (min-width: 600px); | ||
@custom-media --mobile (min-width: 480px); | ||
@custom-media --zoomed-in (min-width: 280px); | ||
|
||
|
||
/* | ||
* wporg-parent-2021 | ||
* @link https://github.com/WordPress/wporg-parent-2021/blob/trunk/source/wp-content/themes/wporg-parent-2021/sass/base/_breakpoints.scss | ||
*/ | ||
@custom-media --small-only (max-width: 559px); | ||
@custom-media --giant (min-width: 2000px); | ||
|
||
|
||
/* | ||
* Custom | ||
*/ |
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
7 changes: 7 additions & 0 deletions
7
public_html/wp-content/themes/wporg-events-2023/postcss/page/front-page/contributors.pcss
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,7 @@ | ||
.wporg-events__contributors { | ||
@media (--small-only) { | ||
&.is-layout-flex { | ||
display: block; | ||
} | ||
} | ||
} |
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