oslo-red-cross-bootstrap-3-theme 1.8.1 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_base.scss +4 -4
- package/_navbar.scss +1 -1
- package/_variables.scss +1 -1
- package/fonts/myriad-pro-bold.eot +0 -0
- package/fonts/myriad-pro-bold.ttf +0 -0
- package/fonts/myriad-pro-regular.eot +0 -0
- package/fonts/myriad-pro-regular.ttf +0 -0
- package/images/red-cross.png +0 -0
- package/package.json +3 -5
package/_base.scss
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'myriad-pro-bold';
|
|
3
|
-
src: url('
|
|
4
|
-
url('
|
|
3
|
+
src: url('./fonts/myriad-pro-bold.eot') format('embedded-opentype'),
|
|
4
|
+
url('./fonts/myriad-pro-bold.ttf') format('truetype');
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
@font-face {
|
|
8
8
|
font-family: 'myriad-pro-regular';
|
|
9
|
-
src: url('
|
|
10
|
-
url('
|
|
9
|
+
src: url('./fonts/myriad-pro-regular.eot') format('embedded-opentype'),
|
|
10
|
+
url('./fonts/myriad-pro-regular.ttf') format('truetype');
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
[x-cloak] {
|
package/_navbar.scss
CHANGED
package/_variables.scss
CHANGED
|
@@ -375,7 +375,7 @@ $container-xl: $container-extra-large-desktop !default;
|
|
|
375
375
|
$navbar-height: 80px !default;
|
|
376
376
|
$navbar-margin-bottom: 30px !default;
|
|
377
377
|
$navbar-border-radius: $border-radius-base !default;
|
|
378
|
-
$navbar-padding-horizontal: floor(
|
|
378
|
+
$navbar-padding-horizontal: floor(calc($grid-gutter-width / 2)) !default;
|
|
379
379
|
$navbar-padding-vertical: calc(($navbar-height - $line-height-computed) / 2) !default;
|
|
380
380
|
$navbar-collapse-max-height: 340px !default;
|
|
381
381
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oslo-red-cross-bootstrap-3-theme",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Bootstrap 3 theme for apps created for the Oslo Red Cross",
|
|
5
5
|
"main": "app.scss",
|
|
6
|
-
"scripts": {
|
|
7
|
-
},
|
|
6
|
+
"scripts": {},
|
|
8
7
|
"repository": {
|
|
9
8
|
"type": "git",
|
|
10
9
|
"url": "git+https://github.com/oslorodekors/bootstrap-3-theme.git"
|
|
@@ -13,6 +12,5 @@
|
|
|
13
12
|
"url": "https://github.com/oslorodekors/bootstrap-3-theme/issues"
|
|
14
13
|
},
|
|
15
14
|
"homepage": "https://github.com/oslorodekors/bootstrap-3-theme#readme",
|
|
16
|
-
"devDependencies": {
|
|
17
|
-
}
|
|
15
|
+
"devDependencies": {}
|
|
18
16
|
}
|