barbican-reset 3.16.0 → 3.17.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/components/BrNavCard.vue +45 -0
- package/components/BrNavLink.vue +21 -0
- package/components/EventSummary.vue +2 -2
- package/icons/account/contact.vue +3 -0
- package/icons/account/index.js +13 -10
- package/icons/account/membership.vue +1 -10
- package/icons/account/orders.vue +1 -15
- package/icons/account/payment.vue +1 -10
- package/icons/account/personal.vue +1 -10
- package/icons/account/ticket.vue +3 -0
- package/icons/index.js +2 -0
- package/icons/person.vue +3 -0
- package/index.js +4 -0
- package/package.json +1 -1
- package/scss/_br-navlink.scss +49 -0
- package/scss/_br-wrap.scss +9 -9
- package/scss/_card-deck.scss +1 -1
- package/scss/card/_membership.scss +1 -1
- package/scss/card/_navcard.scss +125 -0
- package/scss/card/index.scss +1 -1
- package/scss/index.scss +10 -6
- package/scss/mixins/_br-card.scss +4 -2
- package/scss/mixins/_br-footer.scss +2 -2
- package/scss/mixins/_br-form-row.scss +1 -1
- package/scss/mixins/buttons/_custom.scss +17 -15
- package/scss/mixins/buttons/_setup.scss +10 -7
- package/scss/reset.scss +1 -1
- package/icons/account/support.vue +0 -13
- package/icons/account/video.vue +0 -12
- package/icons/power/alleyne.vue +0 -3
- package/icons/power/banff.vue +0 -3
- package/icons/power/council.vue +0 -13
- package/icons/power/index.js +0 -5
- package/icons/snippets/barbican.vue +0 -12
- package/icons/snippets/contributor.vue +0 -6
- package/icons/snippets/index.js +0 -6
- package/icons/snippets/other.vue +0 -5
- package/icons/snippets/pin.vue +0 -5
- package/scss/__vars/_alerts.scss +0 -6
- package/scss/__vars/_columns.scss +0 -9
- package/scss/__vars/_layout.scss +0 -15
- package/scss/__vars/_typography.scss +0 -11
- package/scss/__vars/colors/_brand.scss +0 -13
- package/scss/__vars/colors/_docs.scss +0 -11
- package/scss/__vars/colors/_grey.scss +0 -10
- package/scss/__vars/colors/_status.scss +0 -9
- package/scss/card/_account.scss +0 -19
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<a v-if="to.slice(0, 4) == 'http'" :href="to" class="link-navcard external">
|
|
3
|
+
<br-card class="navcard external">
|
|
4
|
+
<div class="wrap-navcard-content">
|
|
5
|
+
<div class="wrap-navcard-icon">
|
|
6
|
+
<slot name="icon" />
|
|
7
|
+
</div>
|
|
8
|
+
<div>
|
|
9
|
+
<br-card-title>
|
|
10
|
+
<slot name="title" />
|
|
11
|
+
</br-card-title>
|
|
12
|
+
<br-card-text>
|
|
13
|
+
<slot name="copy" />
|
|
14
|
+
</br-card-text>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</br-card>
|
|
18
|
+
</a>
|
|
19
|
+
<router-link v-else class="link-navcard" :to="{ name: to }">
|
|
20
|
+
<br-card class="navcard">
|
|
21
|
+
<div class="wrap-navcard-content">
|
|
22
|
+
<div class="wrap-navcard-icon">
|
|
23
|
+
<slot name="icon" />
|
|
24
|
+
</div>
|
|
25
|
+
<div>
|
|
26
|
+
<br-card-title>
|
|
27
|
+
<slot name="title" />
|
|
28
|
+
</br-card-title>
|
|
29
|
+
<br-card-text>
|
|
30
|
+
<slot name="copy" />
|
|
31
|
+
</br-card-text>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</br-card>
|
|
35
|
+
</router-link>
|
|
36
|
+
</template>
|
|
37
|
+
|
|
38
|
+
<script setup>
|
|
39
|
+
const props = defineProps({
|
|
40
|
+
to: {
|
|
41
|
+
type: String,
|
|
42
|
+
required: true,
|
|
43
|
+
},
|
|
44
|
+
})
|
|
45
|
+
</script>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div v-if="$route.matched.some(({ name }) => name === to)" class="br-navlink">
|
|
3
|
+
{{ title }}
|
|
4
|
+
</div>
|
|
5
|
+
<a v-else-if="to.slice(0, 4) == 'http'" :href="to" class="br-navlink">
|
|
6
|
+
{{ title }}
|
|
7
|
+
</a>
|
|
8
|
+
<router-link v-else :to="{ name: to }" class="br-navlink">
|
|
9
|
+
{{ title }}
|
|
10
|
+
</router-link>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup>
|
|
14
|
+
const props = defineProps({
|
|
15
|
+
title: String,
|
|
16
|
+
to: {
|
|
17
|
+
type: String,
|
|
18
|
+
required: true
|
|
19
|
+
},
|
|
20
|
+
})
|
|
21
|
+
</script>
|
|
@@ -111,7 +111,7 @@ export default {
|
|
|
111
111
|
grid-template-columns: 20rem auto;
|
|
112
112
|
grid-template-rows: auto auto auto;
|
|
113
113
|
|
|
114
|
-
column-gap: var(--gap-
|
|
114
|
+
column-gap: var(--gap-xl);
|
|
115
115
|
}
|
|
116
116
|
&.in_basket {
|
|
117
117
|
grid-template-columns: 16rem auto;
|
|
@@ -125,7 +125,7 @@ export default {
|
|
|
125
125
|
border-radius: var(--border-radius-lg);
|
|
126
126
|
max-width: 100%;
|
|
127
127
|
width: 100%;
|
|
128
|
-
margin-bottom: var(--gap-
|
|
128
|
+
margin-bottom: var(--gap-xl);
|
|
129
129
|
|
|
130
130
|
@include medium-up {
|
|
131
131
|
margin-bottom: 0;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 20 20"><path d="M4,12h8v-2H4v2ZM4,9h12v-2H4v2ZM4,6h12v-2H4v2ZM0,20V2C0,1.45.2.98.59.59s.86-.59,1.41-.59h16c.55,0,1.02.2,1.41.59s.59.86.59,1.41v12c0,.55-.2,1.02-.59,1.41-.39.39-.86.59-1.41.59H4L0,20ZM3.15,14h14.85V2H2v13.13l1.15-1.13ZM2,14V2v12Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
package/icons/account/index.js
CHANGED
|
@@ -1,17 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import ContactIcon from "#icons/account/contact.vue";
|
|
2
|
+
import DetailsIcon from "#icons/person.vue";
|
|
3
|
+
import EditIcon from "#icons/account/edit.vue";
|
|
2
4
|
import MembershipIcon from "#icons/account/membership.vue";
|
|
3
|
-
import VideoIcon from "#icons/account/video.vue";
|
|
4
|
-
import PaymentIcon from "#icons/account/payment.vue";
|
|
5
5
|
import OrdersIcon from "#icons/account/orders.vue";
|
|
6
|
-
import
|
|
7
|
-
import
|
|
6
|
+
import PaymentIcon from "#icons/account/payment.vue";
|
|
7
|
+
import TicketIcon from "#icons/account/ticket.vue";
|
|
8
|
+
|
|
9
|
+
import PersonalIcon from "#icons/account/personal.vue";
|
|
8
10
|
|
|
9
11
|
export {
|
|
10
|
-
|
|
12
|
+
ContactIcon,
|
|
13
|
+
DetailsIcon,
|
|
14
|
+
EditIcon,
|
|
11
15
|
MembershipIcon,
|
|
12
|
-
VideoIcon,
|
|
13
|
-
PaymentIcon,
|
|
14
16
|
OrdersIcon,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
PaymentIcon,
|
|
18
|
+
TicketIcon,
|
|
19
|
+
PersonalIcon,
|
|
17
20
|
};
|
|
@@ -1,12 +1,3 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
height="72"
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
|
-
width="72"
|
|
7
|
-
>
|
|
8
|
-
<path
|
|
9
|
-
d="M20 2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h4v5l4-2 4 2v-5h4c1.11 0 2-.89 2-2V4c0-1.11-.89-2-2-2zm0 13H4v-2h16v2zm0-5H4V4h16v6z"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" version="1.1" viewBox="0 0 20 20"><path d="M2,20c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V7c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h5v-3c0-.55.2-1.02.59-1.41s.86-.59,1.41-.59h2c.55,0,1.02.2,1.41.59s.59.86.59,1.41v3h5c.55,0,1.02.2,1.41.59s.59.86.59,1.41v11c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59H2ZM2,18h16V7h-5c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59h-2c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41H2v11ZM4,16h6v-.45c0-.28-.08-.55-.24-.79s-.38-.43-.66-.56c-.33-.15-.67-.26-1.01-.34s-.7-.11-1.09-.11-.75.04-1.09.11-.68.19-1.01.34c-.28.13-.5.32-.66.56s-.24.5-.24.79v.45ZM12,14.5h4v-1.5h-4v1.5ZM7,13c.42,0,.77-.15,1.06-.44s.44-.65.44-1.06-.15-.77-.44-1.06-.65-.44-1.06-.44-.77.15-1.06.44-.44.65-.44,1.06.15.77.44,1.06.65.44,1.06.44ZM12,11.5h4v-1.5h-4v1.5ZM9,7h2V2h-2v5Z" fill="currentColor"/></svg>
|
|
12
3
|
</template>
|
package/icons/account/orders.vue
CHANGED
|
@@ -1,17 +1,3 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
enable-background="new 0 0 24 24"
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
|
-
height="72"
|
|
7
|
-
width="72"
|
|
8
|
-
>
|
|
9
|
-
<path
|
|
10
|
-
d="M19.5,3.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2L7.5,3.5L6,2v14H3v3c0,1.66,1.34,3,3,3h12c1.66,0,3-1.34,3-3V2 L19.5,3.5z M19,19c0,0.55-0.45,1-1,1s-1-0.45-1-1v-3H8V5h11V19z"
|
|
11
|
-
/>
|
|
12
|
-
<rect height="2" width="6" x="9" y="7" />
|
|
13
|
-
<rect height="2" width="2" x="16" y="7" />
|
|
14
|
-
<rect height="2" width="6" x="9" y="10" />
|
|
15
|
-
<rect height="2" width="2" x="16" y="10" />
|
|
16
|
-
</svg>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="31.5" height="35" viewBox="0 0 18 20"><path d="M3,20c-.83,0-1.54-.29-2.13-.88-.58-.58-.88-1.29-.88-2.13v-3h3V0l1.5,1.5,1.5-1.5,1.5,1.5,1.5-1.5,1.5,1.5,1.5-1.5,1.5,1.5,1.5-1.5,1.5,1.5,1.5-1.5v17c0,.83-.29,1.54-.88,2.13-.58.58-1.29.88-2.13.88H3ZM15,18c.28,0,.52-.1.71-.29s.29-.43.29-.71V3H5v11h9v3c0,.28.1.52.29.71s.43.29.71.29ZM6,7v-2h6v2h-6ZM6,10v-2h6v2h-6ZM14,7c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71.1-.52.29-.71.43-.29.71-.29.52.1.71.29.29.43.29.71-.1.52-.29.71-.43.29-.71.29ZM14,10c-.28,0-.52-.1-.71-.29s-.29-.43-.29-.71.1-.52.29-.71.43-.29.71-.29.52.1.71.29.29.43.29.71-.1.52-.29.71-.43.29-.71.29ZM3,18h9v-2H2v1c0,.28.1.52.29.71s.43.29.71.29ZM2,18v-2,2Z" fill="currentColor"/></svg>
|
|
17
3
|
</template>
|
|
@@ -1,12 +1,3 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
height="72"
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
|
-
width="72"
|
|
7
|
-
>
|
|
8
|
-
<path
|
|
9
|
-
d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="28" viewBox="0 0 20 16"><path d="M20,2v12c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59H2c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41V2C0,1.45.2.98.59.59s.86-.59,1.41-.59h16c.55,0,1.02.2,1.41.59s.59.86.59,1.41ZM2,4h16v-2H2v2ZM2,8v6h16v-6H2ZM2,14V2v12Z" fill="currentColor"/></svg>
|
|
12
3
|
</template>
|
|
@@ -1,12 +1,3 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
height="72"
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
|
-
width="72"
|
|
7
|
-
>
|
|
8
|
-
<path
|
|
9
|
-
d="M9 11.75c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zm6 0c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37C11.07 8.33 14.05 10 17.42 10c.78 0 1.53-.09 2.25-.26.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 35 35"><path d="M12.25,17.06c-1.21,0-2.19.98-2.19,2.19s.98,2.19,2.19,2.19,2.19-.98,2.19-2.19-.98-2.19-2.19-2.19ZM22.75,17.06c-1.21,0-2.19.98-2.19,2.19s.98,2.19,2.19,2.19,2.19-.98,2.19-2.19-.98-2.19-2.19-2.19ZM17.5,0C7.84,0,0,7.84,0,17.5s7.84,17.5,17.5,17.5,17.5-7.84,17.5-17.5S27.16,0,17.5,0ZM17.5,31.5c-7.72,0-14-6.28-14-14,0-.51.03-1.01.09-1.5,4.13-1.84,7.4-5.22,9.12-9.4,3.17,4.48,8.38,7.4,14.28,7.4,1.37,0,2.68-.16,3.94-.46.37,1.24.58,2.57.58,3.96,0,7.72-6.28,14-14,14Z" fill="currentColor" /></svg>
|
|
12
3
|
</template>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="28" viewBox="0 0 20 16"><path d="M7.2,12l2.8-2.1,2.75,2.1-1.05-3.4,2.8-2.2h-3.4l-1.1-3.4-1.1,3.4h-3.4l2.75,2.2-1.05,3.4ZM2,16c-.55,0-1.02-.2-1.41-.59s-.59-.86-.59-1.41v-3.38c0-.18.06-.34.18-.48s.27-.22.45-.25c.4-.13.73-.38.99-.73s.39-.74.39-1.18-.13-.83-.39-1.18-.59-.59-.99-.73c-.18-.03-.33-.12-.45-.25s-.18-.29-.18-.48v-3.38C0,1.45.2.98.59.59s.86-.59,1.41-.59h16c.55,0,1.02.2,1.41.59s.59.86.59,1.41v3.38c0,.18-.06.34-.18.48s-.27.22-.45.25c-.4.13-.73.38-.99.73s-.39.74-.39,1.18.13.83.39,1.18.59.59.99.73c.18.03.33.12.45.25s.18.29.18.48v3.38c0,.55-.2,1.02-.59,1.41s-.86.59-1.41.59H2ZM2,14h16v-2.55c-.62-.37-1.1-.85-1.46-1.46s-.54-1.27-.54-1.99.18-1.38.54-1.99.85-1.1,1.46-1.46v-2.55H2v2.55c.62.37,1.1.85,1.46,1.46s.54,1.27.54,1.99-.18,1.38-.54,1.99-.85,1.1-1.46,1.46v2.55Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
package/icons/index.js
CHANGED
|
@@ -8,6 +8,8 @@ import CityOfLondonLogo from "#icons/city_of_london.vue";
|
|
|
8
8
|
import CityOfLondonLockup from "#icons/city_of_london_lockup.vue";
|
|
9
9
|
import InformationIcon from "#icons/information.vue";
|
|
10
10
|
|
|
11
|
+
import PersonIcon from "#icons/person.vue";
|
|
12
|
+
|
|
11
13
|
export {
|
|
12
14
|
ArrowBack,
|
|
13
15
|
ArrowIcon,
|
package/icons/person.vue
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" version="1.1" viewBox="0 0 16 16"><path d="M8,8c-1.1,0-2.04-.39-2.83-1.18-.78-.78-1.18-1.73-1.18-2.83s.39-2.04,1.18-2.83,1.73-1.18,2.83-1.18,2.04.39,2.83,1.18,1.18,1.73,1.18,2.83-.39,2.04-1.18,2.83c-.78.78-1.73,1.18-2.83,1.18ZM0,16v-2.8c0-.57.15-1.09.44-1.56s.68-.84,1.16-1.09c1.03-.52,2.08-.9,3.15-1.16s2.15-.39,3.25-.39,2.18.13,3.25.39,2.12.65,3.15,1.16c.48.25.87.61,1.16,1.09s.44,1,.44,1.56v2.8H0Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
package/index.js
CHANGED
|
@@ -36,6 +36,8 @@ import BrFormUpdate from '#components/BrFormUpdate.vue'
|
|
|
36
36
|
import BrFormVisible from '#components/BrFormVisible.vue'
|
|
37
37
|
|
|
38
38
|
import BrLoader from '#components/BrLoader.vue'
|
|
39
|
+
import BrNavCard from '#components/BrNavCard.vue'
|
|
40
|
+
import BrNavLink from '#components/BrNavLink.vue'
|
|
39
41
|
import BrSkiplink from '#components/BrSkiplink.vue'
|
|
40
42
|
import BrStatusBars from '#components/BrStatusBars.vue'
|
|
41
43
|
import BrWrap from '#components/BrWrap.vue'
|
|
@@ -79,6 +81,8 @@ export {
|
|
|
79
81
|
BrFormUpdate,
|
|
80
82
|
BrFormVisible,
|
|
81
83
|
BrLoader,
|
|
84
|
+
BrNavCard,
|
|
85
|
+
BrNavLink,
|
|
82
86
|
BrSkiplink,
|
|
83
87
|
BrStatusBars,
|
|
84
88
|
BrWrap,
|
package/package.json
CHANGED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.br-navlink {
|
|
2
|
+
border-color: var(--color-black-10-lighten);
|
|
3
|
+
border-bottom-width: var(--border-width-sm);
|
|
4
|
+
border-right-width: var(--border-width-sm);
|
|
5
|
+
border-left-width: var(--border-width-sm);
|
|
6
|
+
padding-bottom: var(--padding-md);
|
|
7
|
+
padding-right: var(--padding-lg);
|
|
8
|
+
padding-left: var(--padding-lg);
|
|
9
|
+
padding-top: var(--padding-md);
|
|
10
|
+
background-color: white;
|
|
11
|
+
text-decoration: none;
|
|
12
|
+
border-top-width: 0;
|
|
13
|
+
border-style: solid;
|
|
14
|
+
font-weight: bold;
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.br-navlink:first-child {
|
|
19
|
+
border-top-right-radius: var(--border-radius-lg);
|
|
20
|
+
border-top-left-radius: var(--border-radius-lg);
|
|
21
|
+
border-top-width: var(--border-width-sm);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.br-navlink:last-child {
|
|
25
|
+
border-bottom-right-radius: var(--border-radius-lg);
|
|
26
|
+
border-bottom-left-radius: var(--border-radius-lg);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
a.br-navlink:hover,
|
|
30
|
+
a.br-navlink:focus {
|
|
31
|
+
background-color: var(--color-brand-generic-15-lighten);
|
|
32
|
+
outline-color: var(--color-brand-generic-90-darken);
|
|
33
|
+
outline-offset: calc(var(--border-width-sm) * -1);
|
|
34
|
+
color: var(--color-brand-generic-90-darken);
|
|
35
|
+
outline-width: var(--border-width-lg);
|
|
36
|
+
text-decoration: underline;
|
|
37
|
+
outline-style: solid;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
div.br-navlink {
|
|
41
|
+
background-color: var(--color-brand-generic);
|
|
42
|
+
border-color: var(--color-brand-generic);
|
|
43
|
+
outline-offset: calc(var(--border-width-sm) * -1);
|
|
44
|
+
outline-color: var(--color-brand-generic);
|
|
45
|
+
outline-width: var(--border-width-lg);
|
|
46
|
+
outline-style: solid;
|
|
47
|
+
color: white;
|
|
48
|
+
cursor: default;
|
|
49
|
+
}
|
package/scss/_br-wrap.scss
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
max-width: var(--width-layout-lg);
|
|
3
3
|
margin-right: auto;
|
|
4
4
|
margin-left: auto;
|
|
5
|
+
}
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
.br-wrap.title {
|
|
8
|
+
max-width: var(--width-title);
|
|
9
|
+
}
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
.br-wrap.videos {
|
|
12
|
+
max-width: var(--width-layout-md);
|
|
13
|
+
}
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
15
|
+
.br-wrap.thin {
|
|
16
|
+
max-width: var(--width-layout-sm);
|
|
17
17
|
}
|
package/scss/_card-deck.scss
CHANGED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
@use "../mixins/breakpoints" as *;
|
|
2
|
+
|
|
3
|
+
.card.navcard {
|
|
4
|
+
background-color: transparent;
|
|
5
|
+
border-width: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.card.navcard .card-body {
|
|
9
|
+
@include large-up {
|
|
10
|
+
padding: var(--padding-card-lg);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@include small-down {
|
|
14
|
+
padding: var(--padding-card-sm);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.card.navcard.external .card-body {
|
|
19
|
+
@include medium-down {
|
|
20
|
+
padding: 0;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.card.navcard .card-title {
|
|
25
|
+
line-height: var(--line-height-sm);
|
|
26
|
+
font-size: var(--font-size-h2);
|
|
27
|
+
|
|
28
|
+
@include small-down {
|
|
29
|
+
font-size: var(--font-size-h4);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.card.navcard .card-title+.card-text {
|
|
34
|
+
margin-top: var(--margin-md);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.card.navcard .card-text {
|
|
38
|
+
@include small-down {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@include medium-down {
|
|
44
|
+
.link-navcard.external {
|
|
45
|
+
background-color: transparent;
|
|
46
|
+
margin-top: var(--margin-md);
|
|
47
|
+
margin-right: auto;
|
|
48
|
+
border-radius: 0;
|
|
49
|
+
border-width: 0;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.link-navcard.external .wrap-navcard-content {
|
|
53
|
+
display: block;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.link-navcard.external .wrap-navcard-icon {
|
|
57
|
+
display: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.link-navcard.external .card-text {
|
|
61
|
+
display: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.link-navcard.external:hover,
|
|
65
|
+
.link-navcard.external:focus {
|
|
66
|
+
background-color: var(--color-black-80-lighten);
|
|
67
|
+
outline-color: var(--color-black-80-lighten);
|
|
68
|
+
outline-width: 0.25rem;
|
|
69
|
+
outline-style: solid;
|
|
70
|
+
color: white;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@include small-down {
|
|
75
|
+
.link-navcard.external {
|
|
76
|
+
margin-top: var(--margin-sm);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.link-navcard {
|
|
81
|
+
border-color: var(--color-black-10-lighten);
|
|
82
|
+
border-radius: var(--border-radius-lg);
|
|
83
|
+
border-width: var(--border-width-sm);
|
|
84
|
+
background-color: white;
|
|
85
|
+
text-decoration: none;
|
|
86
|
+
border-style: solid;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.link-navcard .card-title {
|
|
90
|
+
text-decoration: underline;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.link-navcard:hover,
|
|
94
|
+
.link-navcard:focus {
|
|
95
|
+
background-color: var(--color-brand-generic-15-lighten);
|
|
96
|
+
outline-color: var(--color-brand-generic-90-darken);
|
|
97
|
+
outline-offset: calc(var(--border-width-sm) * -1);
|
|
98
|
+
color: var(--color-brand-generic-90-darken);
|
|
99
|
+
outline-width: var(--border-width-lg);
|
|
100
|
+
outline-style: solid;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.link-navcard:active {
|
|
104
|
+
transform: scale(0.98);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.wrap-navcard-icon {
|
|
108
|
+
@include small-up {
|
|
109
|
+
margin-top: var(--margin-sm);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.wrap-navcard-icon * {
|
|
114
|
+
display: block;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.wrap-navcard-content {
|
|
118
|
+
grid-template-columns: 2.1875rem auto;
|
|
119
|
+
gap: var(--gap-md);
|
|
120
|
+
display: grid;
|
|
121
|
+
|
|
122
|
+
@include small-down {
|
|
123
|
+
align-items: center;
|
|
124
|
+
}
|
|
125
|
+
}
|
package/scss/card/index.scss
CHANGED
package/scss/index.scss
CHANGED
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
@use "br-form-row";
|
|
20
20
|
@use "br-form-textarea";
|
|
21
21
|
@use "br-form-update";
|
|
22
|
+
|
|
22
23
|
@use "br-loader";
|
|
24
|
+
@use "br-navlink";
|
|
23
25
|
@use "br-promo";
|
|
24
26
|
@use "br-radio";
|
|
25
27
|
@use "br-select";
|
|
@@ -172,19 +174,21 @@
|
|
|
172
174
|
--columns-tickets: 2fr 5fr 5fr 2fr;
|
|
173
175
|
--font-size-body: 1.0625rem;
|
|
174
176
|
--font-size-lg: var(--font-size-h5);
|
|
175
|
-
--font-size-h1: 2.
|
|
176
|
-
--font-size-h2:
|
|
177
|
+
--font-size-h1: 2.5rem;
|
|
178
|
+
--font-size-h2: 2rem;
|
|
177
179
|
--font-size-h3: 1.75rem;
|
|
178
180
|
--font-size-h4: 1.5rem;
|
|
179
181
|
--font-size-h5: 1.25rem;
|
|
180
182
|
--font-size-h6: 1rem;
|
|
181
183
|
--font-size-sm: 0.875rem;
|
|
182
|
-
--gap-
|
|
184
|
+
--gap-xs: 0.5rem;
|
|
183
185
|
--gap-sm: 0.75rem;
|
|
184
186
|
--gap-md: 1rem;
|
|
185
|
-
--gap-lg:
|
|
186
|
-
--
|
|
187
|
-
--line-height-
|
|
187
|
+
--gap-lg: 1.5rem;
|
|
188
|
+
--gap-xl: 2rem;
|
|
189
|
+
--line-height-xs: 1;
|
|
190
|
+
--line-height-sm: 1.15;
|
|
191
|
+
--line-height-md: 1.35;
|
|
188
192
|
--line-height-button-menu: 2.375rem;
|
|
189
193
|
--margin-xs: 0.25rem;
|
|
190
194
|
--margin-sm: 0.5rem;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
@use "../mixins/breakpoints";
|
|
2
2
|
|
|
3
3
|
@mixin br-card {
|
|
4
|
-
border: var(--
|
|
4
|
+
border-color: var(--color-black-25-lighten);
|
|
5
5
|
border-radius: var(--border-radius-lg);
|
|
6
|
+
border-width: var(--border-width-sm);
|
|
6
7
|
background-color: white;
|
|
8
|
+
border-style: solid;
|
|
7
9
|
|
|
8
10
|
+.card {
|
|
9
11
|
margin-top: var(--margin-lg);
|
|
@@ -32,7 +34,7 @@
|
|
|
32
34
|
}
|
|
33
35
|
|
|
34
36
|
@mixin br-card-body {
|
|
35
|
-
padding: var(--padding-card-
|
|
37
|
+
padding: var(--padding-card-md);
|
|
36
38
|
|
|
37
39
|
&.wide {
|
|
38
40
|
padding-right: 0;
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
@mixin br-footer-upper {
|
|
5
5
|
padding-top: var(--padding-content);
|
|
6
|
-
row-gap: var(--gap-
|
|
6
|
+
row-gap: var(--gap-xl);
|
|
7
7
|
display: grid;
|
|
8
8
|
|
|
9
9
|
@include medium-up {
|
|
10
10
|
justify-content: flex-start;
|
|
11
|
-
column-gap: var(--gap-
|
|
11
|
+
column-gap: var(--gap-xl);
|
|
12
12
|
align-items: flex-start;
|
|
13
13
|
grid-auto-flow: column;
|
|
14
14
|
}
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
|
|
80
80
|
@mixin btn-outline-header {
|
|
81
81
|
@include outline-button($color: white, $background: var(--color-brand-generic), $border-width: var(--border-width-lg));
|
|
82
|
-
@include flex-button;
|
|
82
|
+
// @include flex-button;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
@mixin btn-edit-input {
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
@mixin btn-remove {
|
|
114
114
|
@include solid-button($background: var(--color-black-60-lighten),
|
|
115
115
|
$padding: 0.625em,
|
|
116
|
-
$line-height: var(--line-height));
|
|
116
|
+
$line-height: var(--line-height-md));
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
@mixin btn-link {
|
|
120
|
-
@include link-button($line-height: var(--line-height));
|
|
120
|
+
@include link-button($line-height: var(--line-height-md));
|
|
121
121
|
|
|
122
122
|
@include focus {
|
|
123
123
|
@include focus-tabs;
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
|
|
200
200
|
@mixin btn-cta {
|
|
201
201
|
@include solid-button($background: var(--color-black-60-lighten));
|
|
202
|
-
@include flex-button;
|
|
202
|
+
// @include flex-button;
|
|
203
203
|
fill: white;
|
|
204
204
|
}
|
|
205
205
|
|
|
@@ -239,8 +239,10 @@
|
|
|
239
239
|
$background: var(--color-brand-generic),
|
|
240
240
|
$padding: 0 var(--padding-md),
|
|
241
241
|
$margin: var(--margin-xs),
|
|
242
|
-
$line-height: var(--line-height-
|
|
243
|
-
|
|
242
|
+
$line-height: var(--line-height-lg));
|
|
243
|
+
|
|
244
|
+
// @include flex-button;
|
|
245
|
+
|
|
244
246
|
vertical-align: middle;
|
|
245
247
|
min-height: var(--min-height-button);
|
|
246
248
|
|
|
@@ -258,8 +260,8 @@
|
|
|
258
260
|
$color: var(--color-brand-generic),
|
|
259
261
|
$padding: 0 var(--padding-md),
|
|
260
262
|
$margin: var(--margin-xs),
|
|
261
|
-
$line-height: var(--line-height-
|
|
262
|
-
@include flex-button
|
|
263
|
+
$line-height: var(--line-height-lg));
|
|
264
|
+
// @include flex-button;
|
|
263
265
|
vertical-align: middle;
|
|
264
266
|
min-height: var(--min-height-button);
|
|
265
267
|
|
|
@@ -274,7 +276,7 @@
|
|
|
274
276
|
|
|
275
277
|
@mixin btn-discover {
|
|
276
278
|
@include outline-button(white, var(--color-black-60-lighten));
|
|
277
|
-
@include flex-button
|
|
279
|
+
// @include flex-button;
|
|
278
280
|
|
|
279
281
|
span {
|
|
280
282
|
position: relative;
|
|
@@ -318,34 +320,34 @@
|
|
|
318
320
|
|
|
319
321
|
@mixin btn-priority-row {
|
|
320
322
|
@include btn-outline-primary;
|
|
321
|
-
@include flex-button
|
|
323
|
+
// @include flex-button;
|
|
322
324
|
}
|
|
323
325
|
|
|
324
326
|
@mixin btn-login-to-book {
|
|
325
327
|
@include btn-primary;
|
|
326
|
-
@include flex-button
|
|
328
|
+
// @include flex-button;
|
|
327
329
|
}
|
|
328
330
|
|
|
329
331
|
@mixin btn-sold-out {
|
|
330
332
|
@include btn-secondary;
|
|
331
|
-
@include flex-button
|
|
333
|
+
// @include flex-button;
|
|
332
334
|
pointer-events: none;
|
|
333
335
|
min-width: initial;
|
|
334
336
|
}
|
|
335
337
|
|
|
336
338
|
@mixin btn-add-membership-to-basket {
|
|
337
339
|
@include solid-button($background: var(--color-brand-membership));
|
|
338
|
-
@include flex-button
|
|
340
|
+
// @include flex-button;
|
|
339
341
|
}
|
|
340
342
|
|
|
341
343
|
@mixin btn-remove-membership-from-basket {
|
|
342
344
|
@include solid-button($background: var(--color-status-error));
|
|
343
|
-
@include flex-button
|
|
345
|
+
// @include flex-button;
|
|
344
346
|
}
|
|
345
347
|
|
|
346
348
|
@mixin btn-additional-information {
|
|
347
349
|
@include btn-outline-primary;
|
|
348
|
-
@include flex-button
|
|
350
|
+
// @include flex-button;
|
|
349
351
|
}
|
|
350
352
|
|
|
351
353
|
@mixin btn-toggle-password {
|
|
@@ -23,17 +23,20 @@
|
|
|
23
23
|
|
|
24
24
|
@mixin setup-button {
|
|
25
25
|
border-radius: var(--border-radius-lg);
|
|
26
|
-
line-height: var(--line-height-
|
|
26
|
+
line-height: var(--line-height-xs);
|
|
27
27
|
padding: var(--padding-lg);
|
|
28
28
|
font-size: var(--font-size-body);
|
|
29
29
|
text-decoration: none;
|
|
30
30
|
font-family: inherit;
|
|
31
|
-
display: inline-grid;
|
|
32
31
|
text-align: center;
|
|
33
32
|
font-weight: bold;
|
|
34
33
|
transition: none;
|
|
35
34
|
cursor: pointer;
|
|
36
35
|
|
|
36
|
+
justify-content: center;
|
|
37
|
+
display: inline-flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
gap: var(--gap-sm);
|
|
37
40
|
|
|
38
41
|
&:focus {
|
|
39
42
|
box-shadow: none;
|
|
@@ -53,8 +56,8 @@
|
|
|
53
56
|
}
|
|
54
57
|
}
|
|
55
58
|
|
|
56
|
-
@mixin flex-button($gap: var(--gap-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
59
|
+
// @mixin flex-button($gap: var(--gap-sm)) {
|
|
60
|
+
// display: inline-flex;
|
|
61
|
+
// align-items: center;
|
|
62
|
+
// gap: $gap;
|
|
63
|
+
// }
|
package/scss/reset.scss
CHANGED
|
@@ -11,7 +11,7 @@ html {
|
|
|
11
11
|
body {
|
|
12
12
|
-webkit-font-smoothing: antialiased;
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
line-height: var(--line-height);
|
|
14
|
+
line-height: var(--line-height-md);
|
|
15
15
|
font-size: var(--font-size-body);
|
|
16
16
|
color: var(--color-black-60-lighten);
|
|
17
17
|
margin: 0;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
enable-background="new 0 0 24 24"
|
|
5
|
-
viewBox="0 0 24 24"
|
|
6
|
-
height="72"
|
|
7
|
-
width="72"
|
|
8
|
-
>
|
|
9
|
-
<path
|
|
10
|
-
d="M12,2C6.48,2,2,6.48,2,12c0,5.52,4.48,10,10,10s10-4.48,10-10C22,6.48,17.52,2,12,2z M19.46,9.12l-2.78,1.15 c-0.51-1.36-1.58-2.44-2.95-2.94l1.15-2.78C16.98,5.35,18.65,7.02,19.46,9.12z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3 S13.66,15,12,15z M9.13,4.54l1.17,2.78c-1.38,0.5-2.47,1.59-2.98,2.97L4.54,9.13C5.35,7.02,7.02,5.35,9.13,4.54z M4.54,14.87 l2.78-1.15c0.51,1.38,1.59,2.46,2.97,2.96l-1.17,2.78C7.02,18.65,5.35,16.98,4.54,14.87z M14.88,19.46l-1.15-2.78 c1.37-0.51,2.45-1.59,2.95-2.97l2.78,1.17C18.65,16.98,16.98,18.65,14.88,19.46z"
|
|
11
|
-
/>
|
|
12
|
-
</svg>
|
|
13
|
-
</template>
|
package/icons/account/video.vue
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg
|
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
-
viewBox="0 0 24 24"
|
|
5
|
-
height="72"
|
|
6
|
-
width="72"
|
|
7
|
-
>
|
|
8
|
-
<path
|
|
9
|
-
d="M21 3H3c-1.11 0-2 .89-2 2v12c0 1.1.89 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.11-.9-2-2-2zm0 14H3V5h18v12zm-5-6l-7 4V7z"
|
|
10
|
-
/>
|
|
11
|
-
</svg>
|
|
12
|
-
</template>
|
package/icons/power/alleyne.vue
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="325" height="181" viewBox="0 0 325 181" xml:space="preserve" enable-background="new 0 0 325 181"><path d="M25.2,16.6L11.9,57.3h26.6L25.2,16.6z M50.5,0.8l28.3,86.8H48.4l-9.3-28.5H11.4l9.3,28.5H0.2l24.1-73.9L20,0.8H50.5z M80.6,87.6V0.8h30.3v85h11.3l29.4-29.4v31.2H80.6z M156.4,87.6V0.8h30.3v85h9.8l29.4-29.4v31.2H156.4z M230.9,87.6V0.8h69.5v28.1 L273,2.6h-11.8v40.7h6L284.7,26v28.7v7.8l-17.5-17.3h-6v40.7H273l27.4-26.2v28.1h-34.8H230.9z M23.7,180.2v-40.1L0,93.4h31.8 l22.4,44.3L67,112l-8.6-18.6h20.3l-23.3,46.7v40.1H23.7z M138.7,180l-56.5-47.1V180h-1.6V93.4h1.6l67.8,56.5v-29.1l-29.8-27.4h31.4 v57.9V180H138.7z M156.4,180.1V93.3h69.5v28.1l-27.4-26.2h-11.8v40.7h6l17.5-17.3v28.7v7.8l-17.5-17.3h-6v40.7h11.8l27.4-26.2v28.1 h-34.8H156.4z M261.1,125.4c-2,1.7-2.8,4.5-2.3,8.3c0.5,3.9,1.8,8.1,4,12.8c2.2,4.7,4.8,9,7.9,13.1c3.1,4.1,6.2,7.2,9.4,9.3 c3.2,2.1,6,2.5,8.5,1.3L261.1,125.4z M269.8,93.4h30.6v22.1l-30.7-20.3c-1.1,0-2.1,0.5-2.9,1.5c-0.8,0.9-1.3,2.1-1.2,3.4 c0,1.3,0.8,2.5,2.3,3.5L287,116l19,32.1l19-23.9v25.4h-18.1l18.1,30.5h-30.3l-5.3-8.5c-8.6,5.8-16.4,8.7-23.3,8.6 c-7-0.1-12.7-2.1-17.1-6.2c-4.5-4.1-7.2-9.1-8.4-15.3c-1.1-6.1-0.2-12.4,2.9-18.6c3-6.3,8.6-11.7,16.6-16.3l-3.9-6.3 c-2.5-4.3-3.5-8.3-2.9-11.9c0.6-3.6,2.4-6.6,5.4-8.8C261.6,94.6,265.4,93.5,269.8,93.4L269.8,93.4z"/></svg>
|
|
3
|
-
</template>
|
package/icons/power/banff.vue
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="680" height="382" viewBox="0 0 680 382" xml:space="preserve" enable-background="new 0 0 680 382"><path d="M90.3,111.3c16.1-4.1,26.6-14.3,26.6-32.5c0-25.7-17.5-40.7-61.3-40.7H0.4v159h64.1c42.9,0,61.1-19.3,61.1-45.7 C125.5,130.1,113.9,115.8,90.3,111.3z M30.3,62.9h27.5c18.4,0,28.2,5,28.2,19.3c0,14.5-10.4,20.2-24.1,20.2H30.3V62.9z M65.5,172.4 H30.3v-47.5H65c13.6,0,28.8,4.1,28.8,24.5C93.9,165.1,82.1,172.4,65.5,172.4z M405.5,152L339.6,38.2h-33.4v159h27.7V86.3l65.5,110.9 h34v-159h-27.9V152z M458.2,197.2h30.2v-64.8h65.2v-25h-65.2V63.6h70.5V38.2H458.2V197.2z M679.5,63.6V38.2H578.9v159h30.2v-64.8 h65.2v-25h-65.2V63.6H679.5z M125.1,197.2h34.4L208.9,76l49.4,121.2h34.4L208.9,0.8L125.1,197.2z M129.1,233.7l-9.2,2.4 c-1.9-4.7-4.9-7.2-9.9-7.2c-6.9,0-11.3,5.3-11.3,14.7c0,9.3,3.9,15,11.4,15c5.7,0,8.9-2.9,10.8-8.2l9,2.8 c-3.4,8.9-11.1,13.3-20.3,13.3c-10,0-20.7-6.2-20.7-22.9c0-16.2,10.3-22.8,21-22.8C117.8,221,125.5,224.1,129.1,233.7z M164.7,229.9 h-19.6v9.7h18.3v7.6h-18.3v10.6h20.2v7.8h-29.6V222h29.1v7.9H164.7z M208.9,265.6H198l-16.4-29v29H173V222h10.9l16.4,29.7V222h8.6 V265.6z M248.9,229.9h-12.3v35.6h-9.5v-35.6h-12.3V222h34.1V229.9z M272.2,222c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18 h-11.1l-9.6-16.5h-6v16.5h-9.5V222H272.2z M265.1,229.7v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H265.1z M325.8,229.9 h-19.6v9.7h18.3v7.6h-18.3v10.6h20.2v7.8h-29.6V222h29.1v7.9H325.8z M30,286.6H11.1v10.8h17.5v7.7H11.1v17.2H1.6v-43.5H30V286.6z M77.2,300.6c0,15.9-10.5,22.8-21.6,22.8c-10.1,0-21.6-6-21.6-22.9c0-16.2,10.5-22.8,21.6-22.8C65.8,277.7,77.2,283.4,77.2,300.6z M43.8,300.4c0,9.3,4.1,15.1,11.8,15.1c6.8,0,11.8-5.3,11.8-14.8c0-9.2-4-15.1-11.8-15.1C48.5,285.6,43.8,291,43.8,300.4z M99,278.8 c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6v16.5h-9.5v-43.5H99V278.8z M91.9,286.5v12h7.5 c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H91.9z M164.5,315.5h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L164.5,315.5z M150.2,307.9h12.2l-6.1-21.8L150.2,307.9z M198.1,278.8c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6 v16.5h-9.5v-43.5h16.6V278.8z M191,286.5v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H191z M253,286.7h-12.3v35.6h-9.5v-35.6 H219v-7.9h34V286.7z M254,315.3l6.2-5.7c3.5,3.6,7.6,5.8,13.6,5.8c5,0,8.5-1.9,8.5-5.2c0-3.2-1.6-4.9-10.8-6.5 c-10.3-1.9-15.2-5.6-15.2-13.3c0-7.8,6.8-12.8,17-12.8c8.6,0,14.5,3.4,18.3,7.7l-6.5,5.2c-2.2-2.5-5.6-5.1-11.8-5.1 c-4.7,0-7.3,1.7-7.3,4.7c0,2.9,1.7,4.2,10.5,5.8c10.9,1.9,15.7,5.7,15.7,13.6c0,8.6-7.1,13.7-18.5,13.7 C265.6,323.4,258.6,320.6,254,315.3z M337.9,315.5h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L337.9,315.5z M323.6,307.9 h12.2l-6.1-21.8L323.6,307.9z M389.9,322.3H379l-16.4-29v29H354v-43.5h10.9l16.4,29.7v-29.7h8.6V322.3z M410.7,278.8 c12.2,0,23,5.8,23,21.2c0,17.1-11,22.4-21.2,22.4h-16.1v-43.5h14.3V278.8z M406.1,286.5v28h6.5c5.5,0,11.4-2.7,11.4-14.6 c0-8.1-3.7-13.4-13-13.4H406.1z M79.7,349.2l-9.2,2.4c-1.9-4.7-4.9-7.2-9.9-7.2c-6.9,0-11.3,5.3-11.3,14.7c0,9.3,3.9,15,11.4,15 c5.7,0,8.9-2.9,10.8-8.2l9,2.8c-3.4,8.9-11.1,13.3-20.3,13.3c-10,0-20.7-6.2-20.7-22.9c0-16.2,10.3-22.8,21-22.8 C68.4,336.5,76.1,339.6,79.7,349.2z M101.7,337.5c12.1,0,17.2,6,17.2,13.5c0,5.8-3,10-9,12.1l11.4,18h-11.1l-9.6-16.5h-6v16.5h-9.5 v-43.5h16.6V337.5z M94.6,345.2v12h7.5c4,0,7.1-1.4,7.1-6.2c0-3.9-2.5-5.8-6.8-5.8H94.6z M154.6,345.4H135v9.7h18.3v7.6H135v10.6 h20.2v7.8h-29.6v-43.5h29.1L154.6,345.4L154.6,345.4z M188.5,374.2h-16.4l-2,6.8h-9.7l14.1-43.5h11.9l14.1,43.5h-10.1L188.5,374.2z M174.2,366.6h12.2l-6.1-21.8L174.2,366.6z M230.7,345.4h-12.3V381h-9.5v-35.6h-12.3v-7.9h34.1V345.4z M244.9,381.1h-9.5v-43.5h9.5 V381.1z M275.7,381.1h-11.9l-13.1-43.5h10.1l9.1,35.8l9-35.8h9.9L275.7,381.1z M303.9,381.1h-9.5v-43.5h9.5V381.1z M343.7,345.4 h-12.3V381h-9.5v-35.6h-12.3v-7.9h34.1V345.4z M371.5,363.8v17.3H362v-17.2l-14.9-26.4h10.8l9,18.6l9.1-18.6h10.4L371.5,363.8z"/></svg>
|
|
3
|
-
</template>
|
package/icons/power/council.vue
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="246" height="58" viewBox="0 0 246 58" xml:space="preserve" enable-background="new 0 0 246 58"><path d="M95.2,17.9h3.6l6.3,16.1h-3.6l-1.4-3.7h-6.5L92.3,34H89L95.2,17.9z M97,21.1L97,21.1l-2.4,6.7h4.7L97,21.1L97,21.1z M106.9,17.9h3.5c3.5,0,7.6-0.1,7.6,4.4c0,1.9-1.3,3.5-3.3,3.7l0,0c0.9,0.1,1.4,1,1.7,1.7L119,34h-3.6l-1.9-5 c-0.5-1.2-0.9-1.7-2.2-1.7h-1V34h-3.2V17.9H106.9z M110.1,24.7h1.1c1.6,0,3.4-0.2,3.4-2.2c0-1.9-1.8-2.1-3.4-2.1h-1.1V24.7 L110.1,24.7z M124.1,20.4h-4.6v-2.5H132v2.5h-4.6V34h-3.2V20.4 M142.7,20.8c-1-0.4-2.1-0.7-3.3-0.7c-1.1,0-2.5,0.5-2.5,2.2 c0,2.8,7.1,1.6,7.1,7c0,3.5-2.8,4.9-6.1,4.9c-1.8,0-2.5-0.2-4.1-0.6l0.3-2.9c1.1,0.6,2.4,1,3.7,1c1.2,0,2.9-0.6,2.9-2.1 c0-3.1-7.1-1.8-7.1-7.1c0-3.6,2.8-4.9,5.6-4.9c1.4,0,2.7,0.2,3.9,0.6L142.7,20.8 M164.5,33.8c-1.2,0.3-2.4,0.5-3.7,0.5 c-5.2,0-8.8-2.6-8.8-8.1s3.4-8.6,8.8-8.6c1.1,0,2.5,0.2,3.6,0.7l-0.2,2.7c-1.2-0.7-2.3-0.9-3.5-0.9c-3.3,0-5.4,2.5-5.4,5.8 s2,5.8,5.5,5.8c1.3,0,2.8-0.3,3.5-0.7L164.5,33.8 M173.9,17.6c5.1,0,7.9,3.4,7.9,8.3s-2.8,8.4-7.9,8.4c-5.2,0-7.9-3.4-7.9-8.4 S168.8,17.6,173.9,17.6 M173.9,31.7c3.3,0,4.5-2.9,4.5-5.8c0-2.8-1.3-5.8-4.5-5.8s-4.5,2.9-4.5,5.8S170.6,31.7,173.9,31.7 M184,17.9 h3.2v9.3c0,2.7,0.9,4.5,3.4,4.5s3.3-1.8,3.3-4.5v-9.3h3.2v10.3c0,4.3-2.4,6.1-6.6,6.1c-4.1,0-6.6-1.8-6.6-6.1V17.9 M199.6,17.9h4 l6.1,12.1l0,0V17.9h3.1V34h-3.9l-6.2-12.1l0,0V34h-3.1L199.6,17.9 M227.4,33.8c-1.2,0.3-2.4,0.5-3.7,0.5c-5.2,0-8.8-2.6-8.8-8.1 s3.4-8.6,8.8-8.6c1.1,0,2.5,0.2,3.6,0.7l-0.2,2.7c-1.2-0.7-2.3-0.9-3.5-0.9c-3.3,0-5.4,2.5-5.4,5.8s2,5.8,5.5,5.8 c1.3,0,2.8-0.3,3.5-0.7L227.4,33.8 M229.9,34h3.2V17.9h-3.2V34z M235.7,17.9h3.2v13.6h6.3V34h-9.5V17.9 M89,41h9.5v2.5h-6.3v4H98V50 h-5.8v4.5h6.3V57H89V41 M101.2,41h4l6.1,12.1l0,0V41h3.1v16.1h-3.9L104.3,45l0,0v12.1h-3.1L101.2,41 M130,44.1 c-1.2-0.6-2.9-0.9-4.2-0.9c-3.8,0-5.8,2.5-5.8,5.8s2,5.7,5.5,5.7c0.9,0,1.6-0.1,2.1-0.2v-4.2h-3.4v-2.5h6.5v8.7 c-1.7,0.5-3.5,0.8-5.2,0.8c-5.2,0-8.8-2.6-8.8-8.1s3.4-8.6,8.8-8.6c1.9,0,3.3,0.3,4.7,0.7L130,44.1 M133.3,41h3.2v13.6h6.3v2.5h-9.5 V41 M150.5,41h3.6l6.3,16.1h-3.6l-1.4-3.7H149l-1.4,3.7h-3.4L150.5,41z M152.3,44.2L152.3,44.2l-2.4,6.7h4.7L152.3,44.2L152.3,44.2z M162.1,41h4l6.1,12.1l0,0V41h3.1v16.1h-3.9L165.2,45l0,0v12.1h-3.1L162.1,41 M177.9,41h4.4c4.9,0,9.3,1.7,9.3,8.1s-4.4,8.1-9.3,8.1 h-4.4V41z M181.2,54.5h1.8c2.7,0,5.3-2,5.3-5.5s-2.6-5.5-5.3-5.5h-1.8V54.5L181.2,54.5z M89.1,8.5c0.4,0.2,0.9,0.3,1.6,0.3 c1.1,0,2.3-0.6,2.3-2c0-2.1-3.3-2.1-3.3-3.5c0-0.9,0.8-1.2,1.5-1.2c0.5,0,1,0.1,1.3,0.3l0.1-0.6c-0.5-0.2-1-0.2-1.4-0.2 C90,1.6,89,2.3,89,3.4c0,1.9,3.2,2,3.2,3.4c0,1-0.7,1.5-1.6,1.5c-0.7,0-1.1-0.2-1.6-0.4L89.1,8.5z M98.5,3.5h-0.6v2.9 c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9h0.6c0-0.4,0-0.8,0-1.2 v-4H98.5z M100.2,10.8h0.6v-3l0,0c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6 h-0.6L100.2,10.8L100.2,10.8z M103.9,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C103.6,3.9,103.9,5.1,103.9,6.1L103.9,6.1z M106,10.8h0.6v-3l0,0c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7 c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6H106V10.8z M109.7,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C109.4,3.9,109.7,5.1,109.7,6.1L109.7,6.1z M111.6,6.1c0,1.4,0.7,2.7,2.4,2.7c1.7,0,2.4-1.3,2.4-2.7s-0.7-2.7-2.4-2.7 C112.3,3.4,111.6,4.7,111.6,6.1L111.6,6.1z M112.3,6.1c0-1.2,0.6-2.2,1.7-2.2s1.7,1,1.7,2.2s-0.6,2.2-1.7,2.2 C112.9,8.2,112.3,7.3,112.3,6.1L112.3,6.1z M117.8,8.7h0.6V6.1c0-0.9,0.3-2.1,1.3-2.1c0.2,0,0.3,0,0.5,0.1V3.4 c-0.1,0-0.3-0.1-0.4-0.1c-0.7,0-1.1,0.5-1.3,1.1l0,0v-1h-0.6c0,0.4,0,0.6,0,1.2L117.8,8.7L117.8,8.7z M123.8,3.5h-1.2V2L122,2.2v1.2 h-1V4h1v3c0,0.9,0,1.7,1.2,1.7c0.3,0,0.6-0.1,0.8-0.1V8.1c-0.2,0.1-0.3,0.1-0.6,0.1c-0.5,0-0.7-0.4-0.7-0.9V4h1.2L123.8,3.5 L123.8,3.5z M128.5,7.8c-0.3,0.2-1,0.4-1.5,0.4c-1.1,0-1.7-0.9-1.7-2h3.5V5.9c0-1.4-0.6-2.6-2.1-2.6c-1.3,0-2.2,1.1-2.2,2.7 s0.6,2.7,2.4,2.7c0.5,0,1.1-0.1,1.5-0.3L128.5,7.8L128.5,7.8z M125.4,5.7c0-0.9,0.6-1.8,1.5-1.8c1,0,1.3,0.9,1.3,1.8H125.4z M134.5,1h-0.6v3.3l0,0c-0.1-0.3-0.6-1-1.6-1c-1.5,0-2.1,1.1-2.1,2.7c0,1.5,0.7,2.7,2.1,2.7c0.7,0,1.3-0.3,1.6-0.9l0,0v0.8h0.6V1z M130.7,6.1c0-1,0.3-2.2,1.5-2.2c1.1,0,1.5,1.2,1.5,2.2c0,0.9-0.4,2.2-1.5,2.2C131.1,8.2,130.7,7.1,130.7,6.1L130.7,6.1z M142,3.5 h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5H138v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9h0.6 c0-0.4,0-0.8,0-1.2v-4H142z M143.3,8.5c0.5,0.2,1,0.2,1.5,0.2c0.8,0,1.8-0.4,1.8-1.5c0-1.7-2.6-1.6-2.6-2.5c0-0.7,0.5-0.9,1.1-0.9 c0.4,0,0.8,0.1,1.1,0.2l0.1-0.6c-0.5-0.2-1-0.2-1.3-0.2c-0.9,0-1.7,0.4-1.7,1.4c0,1.5,2.5,1.3,2.5,2.5c0,0.6-0.5,0.9-1.1,0.9 c-0.5,0-1-0.1-1.4-0.3L143.3,8.5z M147.8,8.7h0.6V3.5h-0.6V8.7z M147.8,2.1h0.6V1.2h-0.6V2.1z M150.2,8.7h0.6V5.8 c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1l0,0V3.5H150c0,0.4,0,0.8,0,1.2v4 H150.2z M156.3,6.1c0-1,0.3-2.2,1.5-2.2s1.5,0.9,1.5,2.2c0,0.9-0.4,2-1.6,2C156.7,8.1,156.3,7.1,156.3,6.1L156.3,6.1z M160,3.5h-0.6 v0.6l0,0c-0.5-0.6-0.9-0.7-1.6-0.7c-1.5,0-2.1,1.1-2.1,2.7c0,1.1,0.5,2.6,2.2,2.6c0.7,0,1.2-0.3,1.6-1l0,0c0,1.5-0.1,2.7-1.8,2.7 c-0.6,0-1.1-0.2-1.5-0.4l-0.1,0.6c0.3,0.1,0.9,0.3,1.6,0.3c1.8,0,2.4-1.2,2.4-2.6L160,3.5L160,3.5z M163.5,10.8h0.6v-3l0,0 c0.3,0.7,0.8,1,1.6,1c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7c-1.1,0-1.5,0.8-1.7,1.1l0,0V3.6h-0.6L163.5,10.8L163.5,10.8z M167.2,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2C166.9,3.9,167.2,5.1,167.2,6.1L167.2,6.1z M173.4,3.5h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1l0,0v0.9 h0.6c0-0.4,0-0.8,0-1.2v-4H173.4z M175.1,8.7h0.6V7.8l0,0c0.3,0.7,0.9,0.9,1.6,0.9c1.4,0,2.1-1.2,2.1-2.7c0-1.6-0.6-2.7-2.1-2.7 c-1,0-1.5,0.7-1.6,1l0,0V1h-0.6V8.7z M178.8,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2c0-0.9,0.4-2.2,1.5-2.2 C178.5,3.9,178.8,5.1,178.8,6.1L178.8,6.1z M180.9,8.7h0.6V1h-0.6V8.7z M183.3,8.7h0.6V3.5h-0.6V8.7z M183.3,2.1h0.6V1.2h-0.6V2.1z M189.1,3.6c-0.2-0.1-0.6-0.2-1.3-0.2c-1.5,0-2.6,1.1-2.6,2.7c0,1.4,0.8,2.7,2.5,2.7c0.5,0,0.9,0,1.3-0.2l0.1-0.6 c-0.4,0.1-0.8,0.2-1.2,0.2c-1.2,0-1.9-1-1.9-2.2c0-1.3,0.7-2.2,1.9-2.2c0.3,0,0.8,0.1,1.1,0.3L189.1,3.6z M192.6,8.7h0.6V4h1.2V3.5 h-1.2V3c0-0.6-0.1-1.6,0.8-1.6c0.2,0,0.4,0,0.5,0.1V0.9c-0.1-0.1-0.4-0.1-0.6-0.1c-1.3,0-1.4,1.1-1.4,2.2v0.4h-1V4h1L192.6,8.7 L192.6,8.7z M199.7,3.5h-0.6v2.9c0,0.9-0.4,1.9-1.5,1.9c-0.9,0-1.2-0.6-1.2-1.6V3.5h-0.6v3.3c0,1.1,0.5,2,1.8,2c1.1,0,1.5-0.6,1.7-1 l0,0v0.9h0.6c0-0.4,0-0.8,0-1.2v-4H199.7z M201.4,8.7h0.6V5.8c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3 c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1l0,0V3.5h-0.6c0,0.4,0,0.8,0,1.2v4H201.4z M211.3,1h-0.6v3.3l0,0c-0.1-0.3-0.6-1-1.6-1 c-1.5,0-2.1,1.1-2.1,2.7c0,1.5,0.7,2.7,2.1,2.7c0.7,0,1.3-0.3,1.6-0.9l0,0v0.8h0.6V1z M207.6,6.1c0-1,0.3-2.2,1.5-2.2 c1.1,0,1.5,1.2,1.5,2.2c0,0.9-0.4,2.2-1.5,2.2C207.9,8.2,207.6,7.1,207.6,6.1L207.6,6.1z M213,8.7h0.6V3.5H213V8.7z M213,2.1h0.6 V1.2H213V2.1z M215.4,8.7h0.6V5.8c0-0.9,0.4-1.9,1.5-1.9c0.9,0,1.2,0.6,1.2,1.6v3.1h0.6V5.3c0-1.1-0.5-2-1.8-2c-1.1,0-1.5,0.6-1.7,1 l0,0V3.5h-0.6c0,0.4,0,0.8,0,1.2v4H215.4z M221.5,6.1c0-1,0.3-2.2,1.5-2.2s1.5,0.9,1.5,2.2c0,0.9-0.4,2-1.6,2 C221.9,8.1,221.5,7.1,221.5,6.1L221.5,6.1z M225.2,3.5h-0.6v0.6l0,0c-0.5-0.6-0.9-0.7-1.6-0.7c-1.5,0-2.1,1.1-2.1,2.7 c0,1.1,0.5,2.6,2.2,2.6c0.7,0,1.2-0.3,1.6-1l0,0c0,1.5-0.1,2.7-1.8,2.7c-0.6,0-1.1-0.2-1.5-0.4l-0.1,0.6c0.3,0.1,0.9,0.3,1.6,0.3 c1.8,0,2.4-1.2,2.4-2.6L225.2,3.5L225.2,3.5z M228.7,8.7h0.6V7.8l0,0c0.3,0.7,0.9,0.9,1.6,0.9c1.4,0,2.1-1.2,2.1-2.7 c0-1.6-0.6-2.7-2.1-2.7c-1,0-1.5,0.7-1.6,1l0,0V1h-0.6V8.7z M232.4,6.1c0,1-0.3,2.2-1.5,2.2c-1.1,0-1.5-1.2-1.5-2.2 c0-0.9,0.4-2.2,1.5-2.2C232.1,3.9,232.4,5.1,232.4,6.1L232.4,6.1z M234.5,3.5h-0.7l1.8,5.2l-0.1,0.5c-0.2,0.7-0.4,1.1-0.9,1.1 c-0.2,0-0.4,0-0.5-0.1l-0.1,0.5c0.2,0.1,0.5,0.1,0.7,0.1c0.7,0,1.1-0.7,1.3-1.4l2.1-6h-0.7l-1.5,4.3l0,0L234.5,3.5L234.5,3.5z M5.2,29.1l0.1,1.7l-3-0.8l0,0L5.2,29.1z M8,28.3v-1.8l-7.1,2.6l0,1.9l7.3,2.2l-0.1-1.6L6.5,31l-0.1-2.3L8,28.3L8,28.3z M3.1,21.1 l0.2-0.5c0.3-0.9,0.9-0.8,1.2-0.7c0.5,0.2,0.8,0.6,0.6,1.2l-0.2,0.5L3.1,21.1z M8.4,24.5l0.5-1.6L6.1,22c0.2-0.6,0.3-0.8,1.3-0.8 l2,0.1l0.5-1.7H7.4c-0.9,0-1.2,0.1-1.5,0.6l0,0c0.2-1.4-1-1.8-1.2-1.9c-1.3-0.4-2.1,0.4-2.4,1.5l-0.8,2.5L8.4,24.5L8.4,24.5z M11.4,17.4l1-1.4l-4.8-3.4l0.9-1.3l-1.1-0.7l-2.8,4l1.1,0.7L6.5,14L11.4,17.4 M12.8,5.7c-0.6,0.3-1,0.5-1.5,0.9 c-1.9,1.6-0.7,3-0.6,3.2c1.7,2,3.4-0.4,4.3,0.7c0.4,0.5,0.2,1-0.3,1.3c-0.5,0.4-1,0.5-1.5,0.7l0.8,1.1c0.3-0.1,1-0.5,1.7-1 c1.1-0.9,1.4-2.3,0.5-3.3c-1.6-2-3.4,0.3-4.3-0.7c-0.3-0.4-0.2-0.9,0.2-1.2c0.3-0.3,0.9-0.5,1.3-0.6L12.8,5.7 M25.8,0.5 c-0.3-0.1-0.9-0.2-1.9,0.1c-1.4,0.3-2.9,1.8-2.3,4.3c0.5,2.2,2.2,3.4,4.1,2.9c0.9-0.2,1.4-0.5,1.7-0.7L27,5.7 c-0.1,0.1-0.5,0.5-1.4,0.7c-1.1,0.2-2.1-0.5-2.4-1.9s0.2-2.5,1.3-2.7c0.8-0.2,1.2,0,1.5,0.1L25.8,0.5 M31.4,3.7 C31.5,2.4,32,1.3,33,1.4s1.2,1.3,1,2.7s-0.7,2.5-1.6,2.3C31.4,6.3,31.2,5.1,31.4,3.7 M29.6,3.5c-0.3,2.1,0.5,3.8,2.6,4.1 c2.1,0.3,3.2-1.2,3.5-3.3s-0.5-3.8-2.6-4.1C31.1-0.1,29.9,1.4,29.6,3.5 M38.2,6.1c-0.8,1.6-0.3,2.9,1.1,3.6c1.5,0.7,2.8,0.4,3.6-1.2 L45,4.4l-1.5-0.8l-2.2,4.3c-0.3,0.6-0.8,0.9-1.4,0.6c-0.6-0.3-0.7-0.8-0.3-1.5l2.2-4.3l-1.5-0.8L38.2,6.1 M43.4,12l1,1.1l3.8-3.6 l0,0l-2.3,5.1l1.4,1.4l5.2-5l-1-1.1l-3.6,3.5l0,0l2.1-5L48.6,7L43.4,12 M56.8,19c0-0.3,0-0.9-0.5-1.9c-0.6-1.3-2.4-2.5-4.8-1.3 c-2.1,1-2.8,2.9-1.9,4.7c0.4,0.8,0.8,1.3,1,1.5l1.3-0.7c-0.1-0.1-0.6-0.4-1-1.2c-0.5-1,0-2.1,1.3-2.7s2.5-0.4,3,0.6 c0.3,0.7,0.3,1.2,0.3,1.5L56.8,19 M51,24.5l0.3,1.7l7.1-1.3l-0.3-1.7L51,24.5 M51.5,28.8l-0.3,4.1l1.3,0.1l0.2-2.4l5.9,0.4l0.1-1.7 L51.5,28.8 M7.3,45.6l2,2.4l0.5-0.4l-1.6-1.9l2.2-1.8l1.5,1.8l0.5-0.4l-1.5-1.8l2-1.7l1.6,1.9l0.5-0.4L13,41L7.3,45.6 M12.4,51 l0.5,0.3l3.6-5.3l0,0l-1,7l0.7,0.5l4-6l-0.5-0.3l-3.6,5.3l0,0l1.1-7L16.5,45L12.4,51 M23.6,52.9l1.2,0.4l-0.7,2.4 c-0.4,0.1-0.7,0-1-0.1c-1.8-0.5-1.9-2.4-1.6-3.7c0.6-2.2,2.2-2.6,3.2-2.3c0.5,0.2,1.1,0.6,1.3,0.8l0.2-0.7c-0.2-0.2-0.8-0.6-1.4-0.8 c-1.9-0.6-3.5,0.8-4,2.6c-0.4,1.3-0.4,3.8,2,4.5c0.6,0.2,1.1,0.2,1.7,0.1l1-3.4l-1.9-0.5L23.6,52.9 M28.9,56.9h3v-0.6h-2.4v-6.6 h-0.6V56.9 M35.6,49.6L35.6,49.6l2.3,3.4l-2.4,0.7L35.6,49.6z M34.8,56.6l0.6-0.2l0.1-2.1l2.8-0.8l1.2,1.7l0.7-0.2l-4.3-6.3L35.1,49 L34.8,56.6L34.8,56.6z M43.2,53.5l0.5-0.3l-3.5-5.3l0,0l6,3.7l0.7-0.4L43,45l-0.5,0.3l3.5,5.4l0,0L40,47l-0.7,0.4L43.2,53.5 M45.7,43.1l0.3-0.4c1.5-1.9,3.1-0.9,4-0.2c1.4,1.1,1.8,2.5,0.8,3.8l-0.4,0.5L45.7,43.1z M50.5,47.7l0.7-0.9c1.4-1.8,0.8-3.7-0.9-5 c-1.8-1.4-3.5-1.3-4.9,0.6l-0.6,0.7L50.5,47.7L50.5,47.7z M73.4,57.1h0.7v-57h-0.7V57.1z"/></svg>
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
export default {
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
</script>
|
|
10
|
-
|
|
11
|
-
<style>
|
|
12
|
-
|
|
13
|
-
</style>
|
package/icons/power/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="82" height="16" viewBox="0 0 82 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<g clip-path="url(#clip0)">
|
|
4
|
-
<path d="M0 0H3.61846V5.95692C4.48 5.19385 5.26769 4.89846 6.47385 4.89846C9.52615 4.89846 11.7169 7.26154 11.7169 10.5354C11.7169 12.1354 11.1262 13.6123 10.1415 14.6215C9.25538 15.5323 8.04923 15.9754 6.59692 15.9754C5.12 15.9754 4.25846 15.6062 3.47077 14.72V15.5815H0V0ZM3.37231 10.4369C3.37231 11.9877 4.30769 13.0215 5.68615 13.0215C7.06462 13.0215 7.92615 12.0862 7.92615 10.5354C7.92615 8.96 7.06461 7.97538 5.63692 7.97538C4.28308 8 3.37231 8.98462 3.37231 10.4369ZM20.4554 14.8923C19.52 15.7538 18.8554 16 17.4277 16C15.8031 16 14.6215 15.5569 13.7108 14.5969C12.7262 13.5631 12.2092 12.1354 12.2092 10.4862C12.2092 7.23692 14.3508 4.97231 17.3785 4.97231C18.7077 4.97231 19.4462 5.26769 20.4308 6.20308V5.31692H23.9015V15.6554H20.4554V14.8923ZM15.9754 10.5846C15.9754 12.1354 16.8369 13.0462 18.2646 13.0462C19.6431 13.0462 20.5538 12.0369 20.5538 10.4862C20.5538 9.00923 19.6677 8 18.3138 8C16.96 8 15.9754 9.08308 15.9754 10.5846ZM24.9108 5.29231H28.3815V6.59692C29.1446 5.41538 29.9077 4.99692 31.1631 4.99692C31.4092 4.99692 31.5569 5.02154 32.4185 5.12V8.39385C32 8.27077 31.7785 8.27077 31.4831 8.27077C29.5631 8.27077 28.5538 9.30461 28.5538 11.2738V15.6308H24.9354L24.9108 5.29231ZM33.0338 0H36.6523V5.95692C37.5138 5.19385 38.3015 4.89846 39.5077 4.89846C42.56 4.89846 44.7508 7.26154 44.7508 10.5354C44.7508 12.1354 44.16 13.6123 43.1754 14.6215C42.2892 15.5323 41.1077 15.9754 39.6308 15.9754C38.1538 15.9754 37.2923 15.6062 36.5046 14.72V15.5815H33.0338V0ZM36.4062 10.4369C36.4062 11.9877 37.3415 13.0215 38.72 13.0215C40.0985 13.0215 40.96 12.0862 40.96 10.5354C40.96 8.96 40.0985 7.97538 38.6708 7.97538C37.3169 8 36.4062 8.98462 36.4062 10.4369ZM49.28 2.28923C49.28 3.39692 48.3938 4.30769 47.2615 4.30769C46.1538 4.30769 45.2677 3.42154 45.2677 2.28923C45.2677 1.18154 46.1538 0.295385 47.2615 0.295385C48.3938 0.295385 49.28 1.18154 49.28 2.28923ZM45.4646 5.29231H49.0831V15.6308H45.4646V5.29231ZM58.0923 15.1631C56.5908 15.9015 56.0492 16.0246 54.7938 16.0246C53.3662 16.0246 52.2338 15.6554 51.4708 14.8677C50.4369 13.8831 49.8708 12.3323 49.8708 10.5846C49.8708 7.18769 51.9385 4.84923 54.9662 4.84923C56.1231 4.84923 56.9108 5.07077 58.0923 5.78462V9.40308C57.2308 8.39385 56.7138 8.07385 55.8277 8.07385C54.4985 8.07385 53.7108 8.96 53.7108 10.4123C53.7108 11.84 54.5231 12.7262 55.8031 12.7262C56.64 12.7262 57.2308 12.4062 58.0923 11.5692V15.1631ZM66.7077 14.8923C65.7723 15.7538 65.1077 16 63.68 16C62.0554 16 60.8738 15.5569 59.9631 14.5969C58.9785 13.5631 58.4615 12.1354 58.4615 10.4862C58.4615 7.23692 60.6031 4.97231 63.6308 4.97231C64.96 4.97231 65.6985 5.26769 66.6831 6.20308V5.31692H70.1538V15.6554H66.6831V14.8923H66.7077ZM62.2277 10.5846C62.2277 12.1354 63.0892 13.0462 64.5169 13.0462C65.8954 13.0462 66.8061 12.0369 66.8061 10.4862C66.8061 9.00923 65.92 8 64.5661 8C63.2123 8 62.2277 9.08308 62.2277 10.5846ZM71.1631 5.29231H74.7323V6.47385C75.6431 5.29231 76.4554 4.89846 77.9323 4.89846C79.5323 4.89846 80.8861 5.53846 81.4769 6.62154C81.7969 7.18769 81.9446 7.82769 81.9446 8.64V15.6062H78.3262V9.92C78.3262 8.54154 77.8092 7.87692 76.7262 7.87692C75.5692 7.87692 74.7815 8.68923 74.7815 9.92V15.6062H71.1631V5.29231Z" fill="black"/>
|
|
5
|
-
</g>
|
|
6
|
-
<defs>
|
|
7
|
-
<clipPath id="clip0">
|
|
8
|
-
<rect width="81.9692" height="16" fill="white"/>
|
|
9
|
-
</clipPath>
|
|
10
|
-
</defs>
|
|
11
|
-
</svg>
|
|
12
|
-
</template>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="32" height="31" viewBox="0 0 32 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M30.6667 15.0151L27.4133 11.5212L27.8667 6.90018L23.0533 5.87329L20.5333 1.87845L16 3.70681L11.4667 1.87845L8.94666 5.87329L4.13333 6.88766L4.58666 11.5212L1.33333 15.0151L4.58666 18.509L4.13333 23.1425L8.94666 24.1694L11.4667 28.1768L16 26.3359L20.5333 28.1643L23.0533 24.1694L27.8667 23.1425L27.4133 18.5215L30.6667 15.0151ZM25.4 16.8685L24.6533 17.6825L24.76 18.747L25 21.1889L22.4667 21.7274L21.3467 21.9654L20.76 22.8921L19.44 24.9959L17.0667 24.0317L16 23.6059L14.9467 24.0317L12.5733 24.9959L11.2533 22.9046L10.6667 21.9779L9.54666 21.74L7.01333 21.2015L7.25333 18.747L7.35999 17.6825L6.61333 16.8685L4.89333 15.0276L6.61333 13.1742L7.35999 12.3602L7.23999 11.2832L6.99999 8.85377L9.53333 8.31528L10.6533 8.07734L11.24 7.15064L12.56 5.04677L14.9333 6.01105L16 6.43683L17.0533 6.01105L19.4267 5.04677L20.7467 7.15064L21.3333 8.07734L22.4533 8.31528L24.9867 8.85377L24.7467 11.2958L24.64 12.3602L25.3867 13.1742L27.1067 15.0151L25.4 16.8685Z" fill="black"/>
|
|
4
|
-
<path d="M13.4533 17.2192L10.36 14.3013L8.38666 16.1672L13.4533 20.9385L23.24 11.7216L21.2667 9.85562L13.4533 17.2192Z" fill="black"/>
|
|
5
|
-
</svg>
|
|
6
|
-
</template>
|
package/icons/snippets/index.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import BarbicanIcon from "#icons/snippets/barbican.vue";
|
|
2
|
-
import ContributorIcon from "#icons/snippets/contributor.vue";
|
|
3
|
-
import OtherIcon from "#icons/snippets/other.vue";
|
|
4
|
-
import PinIcon from "#icons/snippets/pin.vue";
|
|
5
|
-
|
|
6
|
-
export { BarbicanIcon, ContributorIcon, OtherIcon, PinIcon };
|
package/icons/snippets/other.vue
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M20 5.33332V14.6667H6.89332L6.10666 15.4533L5.33332 16.2267V5.33332H20ZM21.3333 2.66666H3.99999C3.26666 2.66666 2.66666 3.26666 2.66666 3.99999V22.6667L7.99999 17.3333H21.3333C22.0667 17.3333 22.6667 16.7333 22.6667 16V3.99999C22.6667 3.26666 22.0667 2.66666 21.3333 2.66666ZM28 7.99999H25.3333V20H7.99999V22.6667C7.99999 23.4 8.59999 24 9.33332 24H24L29.3333 29.3333V9.33332C29.3333 8.59999 28.7333 7.99999 28 7.99999Z" fill="black"/>
|
|
4
|
-
</svg>
|
|
5
|
-
</template>
|
package/icons/snippets/pin.vue
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="18" height="24" viewBox="0 0 18 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M11.3333 2.66666V8.5C11.3333 9.80666 11.765 11.02 12.5 12H5.49998C6.25831 10.9967 6.66665 9.78333 6.66665 8.5V2.66666H11.3333ZM14.8333 0.333328H3.16665C2.52498 0.333328 1.99998 0.858328 1.99998 1.49999C1.99998 2.14166 2.52498 2.66666 3.16665 2.66666H4.33331V8.5C4.33331 10.4367 2.76998 12 0.833313 12V14.3333H7.79831V22.5L8.96498 23.6667L10.1316 22.5V14.3333H17.1666V12C15.23 12 13.6666 10.4367 13.6666 8.5V2.66666H14.8333C15.475 2.66666 16 2.14166 16 1.49999C16 0.858328 15.475 0.333328 14.8333 0.333328Z" fill="black"/>
|
|
4
|
-
</svg>
|
|
5
|
-
</template>
|
package/scss/__vars/_alerts.scss
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/// @deprecated $error_wrap => var(--colors-error-wrap)
|
|
2
|
-
/// @deprecated $error_focus => var(--colors-error-focus)
|
|
3
|
-
/// @deprecated $neutral_wrap => var(--colors-neutral-wrap)
|
|
4
|
-
/// @deprecated $neutral_focus => var(--colors-neutral-focus)
|
|
5
|
-
/// @deprecated $success_wrap => var(--colors-success-wrap)
|
|
6
|
-
/// @deprecated $success_focus => var(--colors-success-focus)
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// @deprecated $simple => var(--columns-simple)
|
|
2
|
-
/// @deprecated $details--header => var(--columns-details-header)
|
|
3
|
-
/// @deprecated $details--checkbox => var(--columns-checkbox)
|
|
4
|
-
/// @deprecated $etickets => var(--columns-etickets)
|
|
5
|
-
/// @deprecated $gifts => var(--columns-gifts)
|
|
6
|
-
/// @deprecated $membership => var(--columns-membership)
|
|
7
|
-
/// @deprecated $orders => var(--columns-orders)
|
|
8
|
-
/// @deprecated $preferences => var(--columns-preferences)
|
|
9
|
-
/// @deprecated $tickets => var(--columns-tickets)
|
package/scss/__vars/_layout.scss
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/// @deprecated $layout-padding => var(--border-radius-sm)
|
|
2
|
-
/// @deprecated $layout-width-title => var(--width-title)
|
|
3
|
-
/// @deprecated $layout-width-sm => var(--width-layout-sm)
|
|
4
|
-
/// @deprecated $layout-width-md => var(--width-layout-md)
|
|
5
|
-
/// @deprecated $layout-width-lg => var(--width-layout-lg)
|
|
6
|
-
/// @deprecated $br-border-radius => var(--border-radius-sm)
|
|
7
|
-
/// @deprecated $br-border-radius-lg => var(--border-radius-lg)
|
|
8
|
-
/// @deprecated $gap-basket => var(--gap-sm)
|
|
9
|
-
/// @deprecated $gap-instance => var(--gap-lg)
|
|
10
|
-
/// @deprecated $gap-account => var(--gap-lg)
|
|
11
|
-
/// @deprecated $box-shadow-card => var(--box-shadow-card)
|
|
12
|
-
/// @deprecated $padding-button-xs => var(--padding-sm)
|
|
13
|
-
/// @deprecated $padding-button-slim => var(--padding-md)
|
|
14
|
-
/// @deprecated $padding-button-md => var(--padding-lg)
|
|
15
|
-
/// @deprecated $padding-button-lg => var(--padding-lg)
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// @deprecated $body-font-size => var(--font-size-body)
|
|
2
|
-
/// @deprecated $br-font-size-lg => var(--font-size-lg)
|
|
3
|
-
/// @deprecated $h1-font-size => var(--font-size-h1)
|
|
4
|
-
/// @deprecated $h2-font-size => var(--font-size-h2)
|
|
5
|
-
/// @deprecated $h3-font-size => var(--font-size-h3)
|
|
6
|
-
/// @deprecated $h4-font-size => var(--font-size-h4)
|
|
7
|
-
/// @deprecated $h5-font-size => var(--font-size-h5)
|
|
8
|
-
/// @deprecated $br-h6-font-size => var(--font-size-h6)
|
|
9
|
-
/// @deprecated $font-size-sm => var(--font-size-sm)
|
|
10
|
-
/// @deprecated $line-height-md => var(--line-height)
|
|
11
|
-
/// @deprecated $headings-line-height => var(--line-height-heading)
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/// @deprecated $c-brand-generic-s100-l15 => var(--color-brand-generic-35-darken)
|
|
2
|
-
/// @deprecated $c-brand-generic-s100-l38 => var(--color-brand-generic-90-darken)
|
|
3
|
-
/// @deprecated $c-brand-generic-s50-l90 => var(--color-brand-generic-30-lighten)
|
|
4
|
-
/// @deprecated $c-brand-generic-s100-l95 => var(--color-brand-generic-15-lighten)
|
|
5
|
-
/// @deprecated $c-brand-generic-s60-l99 => var(--color-brand-generic-5-lighten)
|
|
6
|
-
/// @deprecated $c-background-alt => var(--color-brand-generic-5-lighten)
|
|
7
|
-
/// @deprecated $c-brand-cinema-dark => var(--color-brand-cinema-80-darken)
|
|
8
|
-
/// @deprecated $c-brand-classical-dark => var(--color-brand-classical-80-darken)
|
|
9
|
-
/// @deprecated $c-brand-classical-light => var(--color-brand-classical-5-lighten)
|
|
10
|
-
/// @deprecated $br-blue => var(--color-brand-membership)
|
|
11
|
-
/// @deprecated $c-brand-membership-dark => var(--color-brand-membership-35-darken)
|
|
12
|
-
/// @deprecated $c-brand-shop-dark => var(--color-brand-shop-80-darken)
|
|
13
|
-
/// @deprecated $c-brand-shop-light => var(--color-brand-shop-15-lighten)
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// @deprecated $c-doc-mindsets-addicts => var(--color-mindsets-addicts)
|
|
2
|
-
/// @deprecated $c-doc-mindsets-family => var(--color-mindsets-family)
|
|
3
|
-
/// @deprecated $c-doc-mindsets-receptive => var(--color-mindsets-receptive)
|
|
4
|
-
/// @deprecated $c-doc-mindsets-value => var(--color-mindsets-value)
|
|
5
|
-
/// @deprecated $c-doc-mindsets-next => var(--color-mindsets-next)
|
|
6
|
-
/// @deprecated $c-doc-mindsets-maybe => var(--color-mindsets-maybe)
|
|
7
|
-
|
|
8
|
-
/// @deprecated $c-doc-design-system => var(--color-design-system)
|
|
9
|
-
/// @deprecated $c-doc-design-identity => var(--color-design-identity)
|
|
10
|
-
/// @deprecated $c-doc-design-supply => var(--color-design-supply)
|
|
11
|
-
/// @deprecated $c-doc-design-demo => var(--color-design-demo)
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// @deprecated $c-grey-l11 => var(--color-black-80-lighten) (midnight)
|
|
2
|
-
/// @deprecated $c-grey-l21 => var(--color-black-60-lighten) (night)
|
|
3
|
-
/// @deprecated $c-grey-l44 => var(--color-black-50-lighten) (steel)
|
|
4
|
-
/// @deprecated $c-grey-l65 => var(--color-black-25-lighten) (concrete)
|
|
5
|
-
/// @deprecated $c-grey-l87 => var(--color-black-10-lighten) (pearl)
|
|
6
|
-
/// @deprecated $c-grey-l96 => var(--color-black-5-lighten) (alpine)
|
|
7
|
-
|
|
8
|
-
/// @deprecated $br-gray-500 => var(--color-black-25-lighten)
|
|
9
|
-
/// @deprecated $br-gray-400 => var(--color-black-10-lighten)
|
|
10
|
-
/// @deprecated $br-gray-300 => var(--color-black-5-lighten)
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/// @deprecated $c-status-error-fade => var(--color-status-error-10-lighten)
|
|
2
|
-
/// @deprecated $c-status-error-light => var(--color-status-error-40-lighten)
|
|
3
|
-
/// @deprecated $c-status-error => var(--color-status-error)
|
|
4
|
-
/// @deprecated $c-status-neutral-fade => var(--color-status-neutral-10-lighten)
|
|
5
|
-
/// @deprecated $c-status-neutral-light => var(--color-status-neutral-40-lighten)
|
|
6
|
-
/// @deprecated $c-status-neutral => var(--color-status-neutral)
|
|
7
|
-
/// @deprecated $c-status-success-fade => var(--color-status-success-10-lighten)
|
|
8
|
-
/// @deprecated $c-status-success-light => var(--color-status-success-40-lighten)
|
|
9
|
-
/// @deprecated $c-status-success => var(--color-status-success)
|
package/scss/card/_account.scss
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
@use "../mixins/breakpoints" as *;
|
|
2
|
-
|
|
3
|
-
.card[account] {
|
|
4
|
-
margin-top: var(--gap-lg);
|
|
5
|
-
position: relative;
|
|
6
|
-
margin-bottom: 0;
|
|
7
|
-
|
|
8
|
-
>.card-body {
|
|
9
|
-
padding: var(--gap-lg);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
iframe {
|
|
13
|
-
min-height: 36.875rem;
|
|
14
|
-
|
|
15
|
-
@include small-up {
|
|
16
|
-
min-height: 27.5rem;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|