-
Notifications
You must be signed in to change notification settings - Fork 3
Porządki + drobne zmiany #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 7 commits
113fee2
851d90b
2b4043e
462e538
ff83886
bed9110
65b3756
cdcee62
9fafb75
427853c
1bb9e8a
a91aba9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| @mixin border-radius($radius) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Chyba żadne z tych prefiksów nie są już potrzebne wg http://shouldiprefix.com
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Usunięty mixin dla border-radius |
||
| -moz-border-radius: $radius; | ||
| -o-border-radius: $radius; | ||
| border-radius: $radius; | ||
| } | ||
|
|
||
| @mixin box-shadow($shadow...) { | ||
| -moz-box-shadow: $shadow; | ||
| -o-box-shadow: $shadow; | ||
| box-shadow: $shadow; | ||
| } | ||
|
|
||
| @mixin transition($transition...) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| -moz-transition: $transition; | ||
| -o-transition: $transition; | ||
| transition: $transition; | ||
| } | ||
|
|
||
| @mixin border-box() { | ||
| -moz-box-sizing: border-box; | ||
| box-sizing: border-box; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| $mobile-breakpoint: 991px; | ||
|
|
||
| $color-default: #c2c2c2; //szary domyslny | ||
| $color-default-dark: #f4f5f5; //szary ciemniejszy | ||
| $color-primary: #29d9c2; //czerwony |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tu coś się źle wcięło chyba.