-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: karimim <muhammad.karimi@post.ch>
- Loading branch information
1 parent
d82980a
commit 74808e0
Showing
8 changed files
with
132 additions
and
0 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,5 @@ | ||
--- | ||
'@swisspost/design-system-styles': patch | ||
--- | ||
|
||
styles: Added reset styles |
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 @@ | ||
@use 'reset'; |
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,121 @@ | ||
/* === Source: Josh Comeau, https://www.joshwcomeau.com/css/custom-css-reset/ (adapted) === */ | ||
|
||
/* | ||
Use a more-intuitive box-sizing model. | ||
*/ | ||
*, | ||
*::before, | ||
*::after { | ||
box-sizing: border-box; | ||
} | ||
|
||
/* | ||
Remove default margin | ||
*/ | ||
* { | ||
margin: 0; | ||
} | ||
|
||
/* | ||
Typographic tweaks! | ||
- Add accessible line-height | ||
- Improve text rendering | ||
*/ | ||
body { | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
/* | ||
Improve media defaults | ||
*/ | ||
img, | ||
picture, | ||
video, | ||
canvas, | ||
svg { | ||
display: block; | ||
max-width: 100%; | ||
} | ||
|
||
/* | ||
Remove built-in form typography styles | ||
*/ | ||
button, | ||
input, | ||
textarea, | ||
select { | ||
font: inherit; | ||
} | ||
|
||
/* | ||
Avoid text overflows | ||
*/ | ||
p, | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
overflow-wrap: break-word; | ||
hyphens: auto; | ||
} | ||
|
||
/* === Source: https://github.com/necolas/normalize.css/blob/master/normalize.css === */ | ||
|
||
/** | ||
* Remove the inner border and padding in Firefox. | ||
*/ | ||
button::-moz-focus-inner, | ||
[type='button']::-moz-focus-inner, | ||
[type='reset']::-moz-focus-inner, | ||
[type='submit']::-moz-focus-inner { | ||
border-style: none; | ||
padding: 0; | ||
} | ||
|
||
/** | ||
Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. | ||
*/ | ||
abbr[title] { | ||
text-decoration: underline; | ||
text-decoration: underline dotted; | ||
} | ||
|
||
/** | ||
* 1. Correct the inheritance and scaling of font size in all browsers. | ||
* 2. Correct the odd `em` font sizing in all browsers. | ||
*/ | ||
code, | ||
kbd, | ||
samp { | ||
font-family: monospace; /* 1 */ | ||
font-size: 1em; /* 2 */ | ||
} | ||
|
||
/** | ||
* Add the correct font size in all browsers. | ||
*/ | ||
small { | ||
font-size: 80%; | ||
} | ||
|
||
/** | ||
* Prevent `sub` and `sup` elements from affecting the line height in | ||
* all browsers. | ||
*/ | ||
sub, | ||
sup { | ||
font-size: 75%; | ||
line-height: 0; | ||
position: relative; | ||
vertical-align: baseline; | ||
} | ||
|
||
sub { | ||
bottom: -0.25em; | ||
} | ||
|
||
sup { | ||
top: -0.5em; | ||
} |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
@use './lic/bootstrap-license'; | ||
|
||
@use './elements'; | ||
@use './components'; | ||
|
||
// Portal specific styles | ||
|
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 |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
|
||
@use './lic/bootstrap-license'; | ||
|
||
@use './elements'; | ||
@use 'components'; | ||
@use 'components/intranet-header'; |
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,2 +1,3 @@ | ||
@use './post-tokens-external'; | ||
@use './elements'; | ||
@use './components'; |
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,2 +1,3 @@ | ||
@use './post-tokens-internal'; | ||
@use './elements'; | ||
@use './components'; |