-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added balloon, added borders to slides * add: breakpoints * enforce use of double quotes and update size of balloon * implement balloon animation * lint --------- Co-authored-by: Andrew Li <[email protected]>
- Loading branch information
1 parent
c386087
commit 7d05efb
Showing
8 changed files
with
632 additions
and
885 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,17 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"bracketSpacing": true, | ||
"htmlWhitespaceSensitivity": "css", | ||
"insertPragma": false, | ||
"jsxBracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"printWidth": 80, | ||
"proseWrap": "always", | ||
"quoteProps": "as-needed", | ||
"requirePragma": false, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"useTabs": false | ||
} |
This file was deleted.
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
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,45 @@ | ||
// breakpoints: { | ||
// xs: '30em', | ||
// sm: '48em', | ||
// md: '64em', | ||
// lg: '74em', | ||
// xl: '90em', | ||
// }, | ||
|
||
$xs: 30em; | ||
$sm: 48em; | ||
$md: 64em; | ||
$lg: 74em; | ||
$xl: 90em; | ||
|
||
@mixin xs { | ||
@media (min-width: #{$xs}) { | ||
@content; | ||
} | ||
} | ||
@mixin sm { | ||
@media (min-width: #{$sm}) { | ||
@content; | ||
} | ||
} | ||
|
||
// Medium devices | ||
@mixin md { | ||
@media (min-width: #{$md}) { | ||
@content; | ||
} | ||
} | ||
|
||
// Large devices | ||
@mixin lg { | ||
@media (min-width: #{$lg}) { | ||
@content; | ||
} | ||
} | ||
|
||
// Extra large devices | ||
@mixin xl { | ||
@media (min-width: #{$xl}) { | ||
@content; | ||
} | ||
} |
Oops, something went wrong.