barbican-reset 1.3.4 → 1.3.5

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.
@@ -129,6 +129,13 @@
129
129
  @include button-solid($c-power-blue);
130
130
  }
131
131
 
132
+ @mixin btn-power-login {
133
+ @include button-solid(
134
+ $background: $white,
135
+ $color: $c-power-blue
136
+ );
137
+ }
138
+
132
139
  @mixin btn-info {
133
140
  @include button-solid($c-status-neutral);
134
141
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/scss/_app.scss CHANGED
@@ -5,9 +5,8 @@
5
5
  display: flex;
6
6
  }
7
7
 
8
- #app.splash {
9
- &.powerDashboard,
10
- &.powerStream {
8
+ #app {
9
+ &.powerSplash {
11
10
  background-position: center -15rem;
12
11
  background-color: $c-power-blue;
13
12
  background-repeat: no-repeat;
@@ -22,13 +21,10 @@
22
21
  }
23
22
  }
24
23
 
25
- &.videos,
26
- &.cinemaDashboard,
27
- &.cinemaStream,
28
- &.concertDashboard,
29
- &.concertStream,
30
- &.theatreDashboard,
31
- &.theatreStream {
24
+ &.videoSplash,
25
+ &.cinemaSplash,
26
+ &.concertSplash,
27
+ &.theatreSplash {
32
28
  background-image: url("/img/videos/splash-bg.jpg");
33
29
  background-color: $c-splash-videos;
34
30
  background-position: center -4rem;
package/scss/_btn.scss CHANGED
@@ -60,6 +60,10 @@
60
60
  @include btn-video-login;
61
61
  }
62
62
 
63
+ &.btn-power-login {
64
+ @include btn-power-login;
65
+ }
66
+
63
67
  &.btn-invisible {
64
68
  @include btn-invisible;
65
69
  }
package/scss/_header.scss CHANGED
@@ -1,7 +1,7 @@
1
1
  header {
2
2
  background-color: $c-page-header-bg;
3
3
 
4
- &.splash {
4
+ &.videoSplash, &.powerSplash, &.cinemaSplash, &.concertSplash, &.theatreSplash {
5
5
  display: none;
6
6
  }
7
7
  }
package/scss/_main.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  main {
2
- &.splash {
2
+ &.videoSplash, &.powerSplash, &.cinemaSplash, &.concertSplash, &.theatreSplash {
3
3
  padding-top: 2rem;
4
4
  color: $white;
5
5
 
package/scss/index.scss CHANGED
@@ -42,6 +42,10 @@ a, a:hover {
42
42
  color: inherit;
43
43
  }
44
44
 
45
- p:last-of-type:not([class^=margin]) {
45
+ p {
46
46
  margin-bottom: 0;
47
+ }
48
+
49
+ p + p {
50
+ margin-top: 1rem;
47
51
  }