-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # yarn.lock
- Loading branch information
Showing
12 changed files
with
488 additions
and
872 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Add new PRs to github project | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- ready_for_review | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
addprtoproject: | ||
name: Add PR to GitHub Project | ||
# Only run on the silverstripe account | ||
if: github.repository_owner == 'silverstripe' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add PR to github project | ||
uses: silverstripe/gha-add-pr-to-project@v1 | ||
with: | ||
app_id: ${{ vars.PROJECT_PERMISSIONS_APP_ID }} | ||
private_key: ${{ secrets.PROJECT_PERMISSIONS_APP_PRIVATE_KEY }} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +1,3 @@ | ||
// Core variables | ||
@import "variables"; | ||
|
||
@import "../components/ShareDraftContent/ShareDraftContent"; |
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,23 +1,23 @@ | ||
@mixin mobile-screen { | ||
@media (max-width: 768px) and (max-height: 540px) { | ||
@media (width <= 768px) and (height <= 540px) { | ||
@content; | ||
} | ||
} | ||
|
||
@mixin small-screen { | ||
@media (max-width: 768px) { | ||
@media (width <= 768px) { | ||
@content; | ||
} | ||
} | ||
|
||
@mixin large-screen { | ||
@media (min-width: 1441px) { | ||
@media (width >= 1441px) { | ||
@content; | ||
} | ||
} | ||
|
||
@mixin topbar-small { | ||
@media (max-width: 582px) { | ||
@media (width <= 582px) { | ||
@content; | ||
} | ||
} |
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
Oops, something went wrong.