-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add components source folder to sass-loader include paths
- Loading branch information
1 parent
05e743b
commit 045ed10
Showing
9 changed files
with
198 additions
and
172 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,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Bridgetown | ||
VERSION = "0.11.1" | ||
VERSION = "0.11.2" | ||
end |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.note { | ||
background: lighten($green, 25%); | ||
padding: 40px; | ||
padding-left: calc(2rem - 5px); | ||
padding-right: 2rem; | ||
border-left: solid 5px $green; | ||
font-size: 0.9em; | ||
font-weight: 500; | ||
margin-left: -2rem; | ||
margin-right: -2rem; | ||
@include mobile { | ||
margin-left: -1rem; | ||
margin-right: -1rem; | ||
} | ||
margin-bottom: 1.5rem; | ||
&.warning { | ||
border-left-color: $red; | ||
background: lighten($red, 35%); | ||
} | ||
} | ||
|
||
table + .note { | ||
margin-top: 1.5rem; | ||
} |
Oops, something went wrong.