Skip to content

Commit 75ae36f

Browse files
Merge branch 'main' of github.com:cssninjaStudio/krypton
2 parents ed2c8b5 + 4f1eb66 commit 75ae36f

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

.npmrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
strict-peer-dependencies=false
33
legacy-peer-deps=true
44
# Force pnpm to install all deep dependencies in node_modules
5-
shamefully-hoist=true
5+
shamefully-hoist=true
6+
# Use v6 lockfile format
7+
use-lockfile-v6=true

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [5.1.0](https://github.com/cssninjaStudio/krypton/compare/v5.0.0...v5.1.0) (2023-05-03)
6+
7+
8+
### Features
9+
10+
* upgrade dependencies + add unplugin-fonts ([c6647a9](https://github.com/cssninjaStudio/krypton/commit/c6647a9e21c5aaa8682d1e47cb803ac52811a139))
11+
* upgrade to Astro v2 ([ae531d7](https://github.com/cssninjaStudio/krypton/commit/ae531d7c1d6cdafb4e3dea5a9b39c36fa6021729))
12+
513
## [5.0.0](https://github.com/cssninjaStudio/krypton/compare/v4.1.2...v5.0.0) (2023-01-06)
614

715

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "krypton",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "Krypton - Bulma + Alpine JS ICO/Crypto Starter",
55
"type": "module",
66
"private": true,

src/styles/layout/_layout.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ body {
2828
========================================================================== */
2929

3030
.dark-wrapper {
31-
background: url(../img/bg/gradient-left-darker.png) repeat-y top left, url(../img/bg/gradient-right-darker.png) repeat-y top right, #1c004c;
31+
background: url(/img/bg/gradient-left-darker.png) repeat-y top left, url(/img/bg/gradient-right-darker.png) repeat-y top right, #1c004c;
3232
}
3333

3434
.hero, .section {
@@ -312,12 +312,12 @@ body {
312312

313313
//Radial gradient background
314314
.has-big-gradient {
315-
background: url(../img/bg/gradient-left.png) no-repeat top left, url(../img/bg/gradient-right.png) no-repeat top right, #320184;
315+
background: url(/img/bg/gradient-left.png) no-repeat top left, url(/img/bg/gradient-right.png) no-repeat top right, #320184;
316316
}
317317

318318
//Dark radial gradient background
319319
.has-big-dark-gradient {
320-
background: url(../img/bg/gradient-left-darker.png) no-repeat top left, url(../img/bg/gradient-right-darker.png) no-repeat top right, #1c004c;
320+
background: url(/img/bg/gradient-left-darker.png) no-repeat top left, url(/img/bg/gradient-right-darker.png) no-repeat top right, #1c004c;
321321
}
322322

323323
//CTA Spacing
@@ -465,7 +465,7 @@ body {
465465
========================================================================== */
466466

467467
.token-wrapper {
468-
background: url(../img/bg/bg-token-top.png) no-repeat top center, url(../img/bg/bg-token-left.png) no-repeat top left, url(../img/bg/bg-token-bottom.png) no-repeat bottom right, #1c004c;
468+
background: url(/img/bg/bg-token-top.png) no-repeat top center, url(/img/bg/bg-token-left.png) no-repeat top left, url(/img/bg/bg-token-bottom.png) no-repeat bottom right, #1c004c;
469469
}
470470

471471
.token-wrapper {
@@ -692,7 +692,7 @@ body {
692692
========================================================================== */
693693

694694
.roadmap-wrapper {
695-
background: url(../img/bg/bg-token-top.png) no-repeat top center, url(../img/bg/bg-token-left.png) no-repeat top left, url(../img/bg/bg-token-bottom.png) no-repeat bottom right, #1c004c;
695+
background: url(/img/bg/bg-token-top.png) no-repeat top center, url(/img/bg/bg-token-left.png) no-repeat top left, url(/img/bg/bg-token-bottom.png) no-repeat bottom right, #1c004c;
696696
}
697697

698698
.roadmap-wrapper {
@@ -963,7 +963,7 @@ body {
963963
========================================================================== */
964964

965965
.media-wrapper {
966-
background: url(../img/bg/gradient-left-darker.png) no-repeat top left, url(../img/bg/gradient-right-darker.png) no-repeat top right, #1c004c;
966+
background: url(/img/bg/gradient-left-darker.png) no-repeat top left, url(/img/bg/gradient-right-darker.png) no-repeat top right, #1c004c;
967967
}
968968

969969
.media-wrapper {

src/styles/layout/_timeline.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,13 +360,13 @@ TABLE OF CONTENTS
360360
-ms-transform: translateY(-50%);
361361
-o-transform: translateY(-50%);
362362
transform: translateY(-50%);
363-
background: url(../img/icons/chevron-left.svg) no-repeat 0 0;
363+
background: url(/img/icons/chevron-left.svg) no-repeat 0 0;
364364
}
365365

366366
//Next button
367367
&.next {
368368
right: 0;
369-
background: url(../img/icons/chevron-right.svg) no-repeat 0 0;
369+
background: url(/img/icons/chevron-right.svg) no-repeat 0 0;
370370
}
371371

372372
//Inactive state

src/styles/utilities/_utils.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body {
1919
position: absolute;
2020
left: 50%;
2121
top: 50%;
22-
background-image: url(../img/loaders/rings.svg);
22+
background-image: url(/img/loaders/rings.svg);
2323
background-size: 80px 80px;
2424
background-repeat: no-repeat;
2525
background-position: center;

0 commit comments

Comments
 (0)