@globalbrain/sefirot 0.71.0 → 2.0.0-draft.3
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/CHANGELOG.md +6 -804
- package/README.md +1 -1
- package/lib/assets/styles/bootstrap.css +1 -2
- package/lib/assets/styles/variables.css +14 -47
- package/lib/components/SAvatar.vue +9 -18
- package/lib/components/SButton.vue +35 -48
- package/lib/components/SDialog.vue +16 -34
- package/lib/components/SDropdown.vue +36 -55
- package/lib/components/SDropdownItem.vue +27 -39
- package/lib/components/SDropdownItemText.vue +4 -9
- package/lib/components/SDropdownItemUser.vue +4 -12
- package/lib/components/SInputBase.vue +33 -45
- package/lib/components/SInputCheckbox.vue +19 -35
- package/lib/components/SInputDropdown.vue +109 -171
- package/lib/components/SInputDropdownItem.vue +26 -32
- package/lib/components/SInputDropdownItemText.vue +6 -11
- package/lib/components/SInputDropdownItemTextTag.vue +10 -17
- package/lib/components/SInputDropdownItemUser.vue +5 -13
- package/lib/components/SInputDropdownItemUserTag.vue +9 -16
- package/lib/components/SInputFile.vue +38 -53
- package/lib/components/SInputHMS.vue +91 -114
- package/lib/components/SInputNumber.vue +27 -106
- package/lib/components/SInputRadio.vue +23 -33
- package/lib/components/SInputRadios.vue +37 -47
- package/lib/components/SInputText.vue +72 -628
- package/lib/components/SInputTextarea.vue +54 -113
- package/lib/components/SInputYMD.vue +94 -105
- package/lib/components/SLink.vue +16 -52
- package/lib/components/SModal.vue +53 -90
- package/lib/components/SPortalModals.vue +37 -53
- package/lib/components/SPortalSnackbars.vue +9 -24
- package/lib/components/SSheet.vue +10 -23
- package/lib/components/SSheetFooter.vue +0 -2
- package/lib/components/SSheetFooterAction.vue +9 -14
- package/lib/components/SSheetFooterActions.vue +1 -3
- package/lib/components/SSheetHeader.vue +9 -24
- package/lib/components/SSheetHeaderTitle.vue +1 -3
- package/lib/components/SSheetMedium.vue +13 -25
- package/lib/components/SSnackbar.vue +18 -28
- package/lib/composables/Dialog.ts +9 -17
- package/lib/composables/Dropdown.ts +2 -2
- package/lib/composables/{Menu.ts → Flyout.ts} +11 -4
- package/lib/composables/Form.ts +42 -44
- package/lib/composables/Modal.ts +9 -9
- package/lib/composables/Snackbar.ts +18 -0
- package/lib/composables/Validation.ts +28 -0
- package/lib/mixins/Sheet.ts +3 -3
- package/lib/store/Sefirot.ts +8 -13
- package/lib/store/dialog/index.ts +20 -10
- package/lib/store/modal/index.ts +11 -13
- package/lib/store/snackbars/index.ts +3 -4
- package/lib/support/{Util.ts → Utils.ts} +0 -2
- package/lib/types/Utils.ts +0 -7
- package/lib/types/vue-shims.d.ts +7 -0
- package/lib/validation/rules/checked.ts +6 -10
- package/lib/validation/rules/fileExtension.ts +9 -9
- package/lib/validation/rules/hms.ts +9 -9
- package/lib/validation/rules/index.ts +10 -74
- package/lib/validation/rules/maxLength.ts +10 -9
- package/lib/validation/rules/minLength.ts +12 -0
- package/lib/validation/rules/required.ts +2 -10
- package/lib/validation/rules/requiredHms.ts +11 -0
- package/lib/validation/rules/requiredIf.ts +3 -11
- package/lib/validation/rules/requiredYmd.ts +11 -0
- package/lib/validation/rules/ymd.ts +11 -0
- package/lib/validation/validators/checked.ts +1 -1
- package/lib/validation/validators/fileExtension.ts +1 -1
- package/lib/validation/validators/hms.ts +5 -5
- package/lib/validation/validators/requiredHms.ts +17 -0
- package/lib/validation/validators/requiredYmd.ts +7 -0
- package/lib/validation/validators/ymd.ts +41 -0
- package/package.json +45 -50
- package/lib/components/SAction.vue +0 -37
- package/lib/components/SActionAvatar.vue +0 -25
- package/lib/components/SActionButton.vue +0 -40
- package/lib/components/SActionPill.vue +0 -35
- package/lib/components/SActionSwitch.vue +0 -37
- package/lib/components/SAlert.vue +0 -145
- package/lib/components/SButtonGroup.vue +0 -160
- package/lib/components/SCard.vue +0 -111
- package/lib/components/SCardFooter.vue +0 -74
- package/lib/components/SCardHeader.vue +0 -213
- package/lib/components/SGrid.vue +0 -237
- package/lib/components/SGridActionLink.vue +0 -53
- package/lib/components/SGridActionMulti.vue +0 -139
- package/lib/components/SGridActionSingle.vue +0 -64
- package/lib/components/SHeader.vue +0 -180
- package/lib/components/SInputCheckboxes.vue +0 -83
- package/lib/components/SInputDate.vue +0 -192
- package/lib/components/SInputDay.vue +0 -87
- package/lib/components/SInputMonth.vue +0 -86
- package/lib/components/SInputSelect.vue +0 -282
- package/lib/components/SInputSwitch.vue +0 -212
- package/lib/components/SInputSwitches.vue +0 -108
- package/lib/components/SInputTime.vue +0 -255
- package/lib/components/SInputYear.vue +0 -60
- package/lib/components/SMarkdown.vue +0 -56
- package/lib/components/SPlaceholderBlank.vue +0 -113
- package/lib/components/SPlaceholderImage.vue +0 -83
- package/lib/components/SPortalScreens.vue +0 -62
- package/lib/components/SProgressBar.vue +0 -89
- package/lib/components/SResponsive.vue +0 -46
- package/lib/components/SScreen.vue +0 -81
- package/lib/components/SStep.vue +0 -107
- package/lib/components/SSteps.vue +0 -75
- package/lib/components/STag.vue +0 -67
- package/lib/components/STooltip.vue +0 -134
- package/lib/components/SWindow.vue +0 -158
- package/lib/composables/Action.ts +0 -141
- package/lib/composables/Alert.ts +0 -50
- package/lib/composables/Card.ts +0 -46
- package/lib/composables/FormValidation.ts +0 -150
- package/lib/composables/Header.ts +0 -72
- package/lib/composables/InputDropdown.ts +0 -6
- package/lib/composables/Markdown.ts +0 -138
- package/lib/composables/Router.ts +0 -20
- package/lib/composables/Step.ts +0 -7
- package/lib/composables/Store.ts +0 -9
- package/lib/composables/Tag.ts +0 -32
- package/lib/composables/Tooltip.ts +0 -91
- package/lib/composables/Utils.ts +0 -115
- package/lib/composables/markdown/LinkPlugin.ts +0 -45
- package/lib/compositions/useForm.ts +0 -17
- package/lib/compositions/useResizeObserver.ts +0 -25
- package/lib/compositions/useTime.ts +0 -26
- package/lib/store/alert/index.ts +0 -32
- package/lib/store/screen/index.ts +0 -46
- package/lib/types/v-calendar.d.ts +0 -5
- package/lib/validation/Validation.ts +0 -151
- package/lib/validation/rules/day.ts +0 -11
- package/lib/validation/rules/email.ts +0 -11
- package/lib/validation/rules/every.ts +0 -38
- package/lib/validation/rules/include.ts +0 -11
- package/lib/validation/rules/includeSome.ts +0 -11
- package/lib/validation/rules/integer.ts +0 -11
- package/lib/validation/rules/maxValue.ts +0 -11
- package/lib/validation/rules/minValue.ts +0 -11
- package/lib/validation/rules/month.ts +0 -11
- package/lib/validation/rules/not.ts +0 -10
- package/lib/validation/rules/regex.ts +0 -11
- package/lib/validation/rules/requiredHMS.ts +0 -11
- package/lib/validation/rules/requiredMonthDate.ts +0 -11
- package/lib/validation/rules/requiredYearMonth.ts +0 -11
- package/lib/validation/rules/requiredYearMonthDate.ts +0 -11
- package/lib/validation/rules/rule.ts +0 -5
- package/lib/validation/rules/sameAs.ts +0 -11
- package/lib/validation/rules/url.ts +0 -11
- package/lib/validation/rules/validateIf.ts +0 -27
- package/lib/validation/rules/year.ts +0 -11
- package/lib/validation/rules/yearMonth.ts +0 -11
- package/lib/validation/rules/yearMonthDate.ts +0 -11
- package/lib/validation/validators/day.ts +0 -29
- package/lib/validation/validators/email.ts +0 -5
- package/lib/validation/validators/include.ts +0 -5
- package/lib/validation/validators/includeSome.ts +0 -5
- package/lib/validation/validators/index.ts +0 -51
- package/lib/validation/validators/integer.ts +0 -6
- package/lib/validation/validators/maxLength.ts +0 -3
- package/lib/validation/validators/maxValue.ts +0 -3
- package/lib/validation/validators/minValue.ts +0 -3
- package/lib/validation/validators/month.ts +0 -3
- package/lib/validation/validators/monthDate.ts +0 -20
- package/lib/validation/validators/regex.ts +0 -3
- package/lib/validation/validators/required.ts +0 -27
- package/lib/validation/validators/requiredHMS.ts +0 -17
- package/lib/validation/validators/requiredMonthDate.ts +0 -8
- package/lib/validation/validators/requiredYearMonth.ts +0 -8
- package/lib/validation/validators/requiredYearMonthDate.ts +0 -9
- package/lib/validation/validators/sameAs.ts +0 -5
- package/lib/validation/validators/url.ts +0 -5
- package/lib/validation/validators/year.ts +0 -3
- package/lib/validation/validators/yearMonth.ts +0 -20
- package/lib/validation/validators/yearMonthDate.ts +0 -21
|
@@ -2,121 +2,42 @@
|
|
|
2
2
|
<SInputText
|
|
3
3
|
class="SInputNumber"
|
|
4
4
|
:size="size"
|
|
5
|
-
|
|
6
|
-
:name="name"
|
|
5
|
+
type="number"
|
|
7
6
|
:label="label"
|
|
8
7
|
:note="note"
|
|
9
8
|
:help="help"
|
|
10
|
-
type="number"
|
|
11
9
|
:placeholder="placeholder"
|
|
12
|
-
:align="align"
|
|
13
|
-
:text="text"
|
|
14
|
-
:text-after="textAfter"
|
|
15
|
-
:action="action"
|
|
16
|
-
:color="color"
|
|
17
|
-
:step="step"
|
|
18
10
|
:disabled="disabled"
|
|
19
|
-
:validation="validation"
|
|
20
|
-
:display-value="displayValue"
|
|
21
|
-
:value="value"
|
|
22
11
|
:error-message="errorMessage"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
@
|
|
26
|
-
|
|
27
|
-
>
|
|
28
|
-
<template #before-help>
|
|
29
|
-
<p v-if="helpFormat" class="help-text">
|
|
30
|
-
{{ valueWithSeparator }}
|
|
31
|
-
</p>
|
|
32
|
-
</template>
|
|
33
|
-
</SInputText>
|
|
12
|
+
:model-value="modelValue"
|
|
13
|
+
:validation="validation"
|
|
14
|
+
@update:model-value="emitUpdate"
|
|
15
|
+
/>
|
|
34
16
|
</template>
|
|
35
17
|
|
|
36
|
-
<script lang="ts">
|
|
37
|
-
import { PropType
|
|
38
|
-
import { isNullish } from '../support/
|
|
39
|
-
import { Validation } from '../
|
|
40
|
-
import SInputText
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
},
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
placeholder: { type: String, default: null },
|
|
55
|
-
align: { type: String as PropType<Align>, default: null },
|
|
56
|
-
text: { type: String, default: null },
|
|
57
|
-
textAfter: { type: String, default: null },
|
|
58
|
-
action: { type: Object as PropType<Action>, default: null },
|
|
59
|
-
color: { type: Function as PropType<(value: number) => Color>, default: null },
|
|
60
|
-
step: { type: Number, default: 1 },
|
|
61
|
-
separator: { type: Boolean, default: false },
|
|
62
|
-
helpFormat: { type: Boolean, default: false },
|
|
63
|
-
disabled: { type: Boolean, default: false },
|
|
64
|
-
errorMessage: { type: Boolean, default: true },
|
|
65
|
-
value: { type: Number, default: null },
|
|
66
|
-
validation: { type: Object as PropType<Validation>, default: null }
|
|
67
|
-
},
|
|
68
|
-
|
|
69
|
-
setup(props, { emit }) {
|
|
70
|
-
const valueWithSeparator = computed(() => {
|
|
71
|
-
if (isNullish(props.value)) {
|
|
72
|
-
return '0'
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
return props.value >= 100000000000000000000
|
|
76
|
-
? 'The number is too big'
|
|
77
|
-
: props.value.toLocaleString('en-US', { maximumFractionDigits: 20 })
|
|
78
|
-
})
|
|
79
|
-
|
|
80
|
-
const displayValue = computed(() => {
|
|
81
|
-
if (!props.separator) {
|
|
82
|
-
return null
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
return valueWithSeparator.value !== '0' ? valueWithSeparator.value : null
|
|
86
|
-
})
|
|
87
|
-
|
|
88
|
-
function emitInput(value: number): void {
|
|
89
|
-
emit('input', value)
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
function emitBlur(value: number): void {
|
|
93
|
-
emit('blur', value)
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
function emitEnter(value: number): void {
|
|
97
|
-
emit('enter', value)
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
return {
|
|
101
|
-
valueWithSeparator,
|
|
102
|
-
displayValue,
|
|
103
|
-
emitInput,
|
|
104
|
-
emitBlur,
|
|
105
|
-
emitEnter
|
|
106
|
-
}
|
|
107
|
-
}
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
import { PropType } from 'vue'
|
|
20
|
+
import { isNullish } from '../support/Utils'
|
|
21
|
+
import { Validation, Validatable } from '../composables/Validation'
|
|
22
|
+
import SInputText from './SInputText.vue'
|
|
23
|
+
|
|
24
|
+
type Size = 'mini' | 'small' | 'medium'
|
|
25
|
+
|
|
26
|
+
defineProps({
|
|
27
|
+
size: { type: String as PropType<Size>, default: 'small' },
|
|
28
|
+
label: { type: String, default: null },
|
|
29
|
+
note: { type: String, default: null },
|
|
30
|
+
help: { type: String, default: null },
|
|
31
|
+
placeholder: { type: String, default: null },
|
|
32
|
+
disabled: { type: Boolean, default: false },
|
|
33
|
+
errorMessage: { type: Boolean, default: true },
|
|
34
|
+
modelValue: { type: Number as PropType<number | null>, default: null },
|
|
35
|
+
validation: { type: Object as PropType<Validatable>, default: null }
|
|
108
36
|
})
|
|
109
|
-
</script>
|
|
110
37
|
|
|
111
|
-
|
|
112
|
-
@import "@/assets/styles/variables";
|
|
38
|
+
const emit = defineEmits(['update:modelValue'])
|
|
113
39
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
padding: 6px 0 0;
|
|
117
|
-
line-height: 20px;
|
|
118
|
-
font-size: 12px;
|
|
119
|
-
font-weight: 500;
|
|
120
|
-
color: var(--input-help);
|
|
40
|
+
function emitUpdate(value: string | null): void {
|
|
41
|
+
emit('update:modelValue', value ? Number(value): null)
|
|
121
42
|
}
|
|
122
|
-
</
|
|
43
|
+
</script>
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<SInputBase
|
|
3
3
|
class="SInputRadio"
|
|
4
|
-
:
|
|
4
|
+
:class="[size]"
|
|
5
5
|
:label="label"
|
|
6
6
|
:note="note"
|
|
7
7
|
:help="help"
|
|
8
|
+
:error-message="errorMessage"
|
|
9
|
+
:validation="validation"
|
|
8
10
|
>
|
|
9
11
|
<div class="container">
|
|
10
|
-
<div class="input" :class="{ on:
|
|
12
|
+
<div class="input" :class="{ on: modelValue }" role="button" @click="emitChange">
|
|
11
13
|
<div class="box">
|
|
12
14
|
<div class="check" />
|
|
13
15
|
</div>
|
|
@@ -18,44 +20,32 @@
|
|
|
18
20
|
</SInputBase>
|
|
19
21
|
</template>
|
|
20
22
|
|
|
21
|
-
<script lang="ts">
|
|
22
|
-
import {
|
|
23
|
+
<script setup lang="ts">
|
|
24
|
+
import { PropType } from 'vue'
|
|
25
|
+
import { Validation } from '../composables/Validation'
|
|
23
26
|
import SInputBase from './SInputBase.vue'
|
|
24
27
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
},
|
|
28
|
+
type Size = 'mini' | 'small' | 'medium'
|
|
29
|
+
|
|
30
|
+
const props = defineProps({
|
|
31
|
+
size: { type: String as PropType<Size>, default: 'small' },
|
|
32
|
+
label: { type: String, default: null },
|
|
33
|
+
note: { type: String, default: null },
|
|
34
|
+
help: { type: String, default: null },
|
|
35
|
+
text: { type: String, required: true },
|
|
36
|
+
errorMessage: { type: Boolean, default: true },
|
|
37
|
+
modelValue: { type: Boolean, required: true },
|
|
38
|
+
validation: { type: Object as PropType<Validation>, default: null }
|
|
39
|
+
})
|
|
34
40
|
|
|
35
|
-
|
|
36
|
-
name: { type: String, default: null },
|
|
37
|
-
label: { type: String, default: null },
|
|
38
|
-
note: { type: String, default: null },
|
|
39
|
-
help: { type: String, default: null },
|
|
40
|
-
text: { type: String, required: true },
|
|
41
|
-
value: { type: Boolean, required: true }
|
|
42
|
-
},
|
|
41
|
+
const emit = defineEmits(['update:modelValue'])
|
|
43
42
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
return {
|
|
50
|
-
emitChange
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
})
|
|
43
|
+
function emitChange() {
|
|
44
|
+
emit('update:modelValue', !props.modelValue)
|
|
45
|
+
}
|
|
54
46
|
</script>
|
|
55
47
|
|
|
56
48
|
<style lang="postcss" scoped>
|
|
57
|
-
@import "@/assets/styles/variables";
|
|
58
|
-
|
|
59
49
|
.container {
|
|
60
50
|
display: flex;
|
|
61
51
|
}
|
|
@@ -2,18 +2,19 @@
|
|
|
2
2
|
<SInputBase
|
|
3
3
|
class="SInputRadios"
|
|
4
4
|
:class="[size]"
|
|
5
|
-
:name="name"
|
|
6
5
|
:label="label"
|
|
7
6
|
:note="note"
|
|
8
7
|
:help="help"
|
|
8
|
+
:error-message="errorMessage"
|
|
9
|
+
:validation="validation"
|
|
9
10
|
>
|
|
10
11
|
<div class="container">
|
|
11
12
|
<div class="row">
|
|
12
|
-
<div v-for="option in options" :key="
|
|
13
|
+
<div v-for="(option, index) in options" :key="index" class="col">
|
|
13
14
|
<SInputRadio
|
|
14
15
|
:text="option.label"
|
|
15
|
-
:value="isChecked(option.value)"
|
|
16
|
-
@
|
|
16
|
+
:model-value="isChecked(option.value)"
|
|
17
|
+
@update:model-value="handleChange(option.value)"
|
|
17
18
|
/>
|
|
18
19
|
</div>
|
|
19
20
|
</div>
|
|
@@ -21,63 +22,52 @@
|
|
|
21
22
|
</SInputBase>
|
|
22
23
|
</template>
|
|
23
24
|
|
|
24
|
-
<script lang="ts">
|
|
25
|
-
import { PropType
|
|
25
|
+
<script setup lang="ts">
|
|
26
|
+
import { PropType } from 'vue'
|
|
27
|
+
import { Validatable } from '../composables/Validation'
|
|
26
28
|
import SInputBase from './SInputBase.vue'
|
|
27
29
|
import SInputRadio from './SInputRadio.vue'
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
type Size = 'mini' | 'small' | 'medium'
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
},
|
|
36
|
-
|
|
37
|
-
model: {
|
|
38
|
-
prop: 'value',
|
|
39
|
-
event: 'change'
|
|
40
|
-
},
|
|
33
|
+
interface Option {
|
|
34
|
+
label: string
|
|
35
|
+
value: string | number | boolean
|
|
36
|
+
}
|
|
41
37
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
},
|
|
38
|
+
const props = defineProps({
|
|
39
|
+
size: { type: String as PropType<Size>, default: 'small' },
|
|
40
|
+
name: { type: String, default: null },
|
|
41
|
+
label: { type: String, default: null },
|
|
42
|
+
note: { type: String, default: null },
|
|
43
|
+
help: { type: String, default: null },
|
|
44
|
+
nullable: { type: Boolean, default: true },
|
|
45
|
+
options: { type: Array as PropType<any[]>, required: true },
|
|
46
|
+
errorMessage: { type: Boolean, default: true },
|
|
47
|
+
modelValue: { type: [String, Number, Boolean], default: null },
|
|
48
|
+
validation: { type: Object as PropType<Validatable>, default: null }
|
|
49
|
+
})
|
|
52
50
|
|
|
53
|
-
|
|
54
|
-
function isChecked(value: unknown): boolean {
|
|
55
|
-
return value === props.value
|
|
56
|
-
}
|
|
51
|
+
const emit = defineEmits(['update:modelValue'])
|
|
57
52
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
53
|
+
function isChecked(value: string | number | boolean) {
|
|
54
|
+
return value === props.modelValue
|
|
55
|
+
}
|
|
61
56
|
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
function handleChange(value: string | number | boolean) {
|
|
58
|
+
if (value !== props.modelValue) {
|
|
59
|
+
emit('update:modelValue', value)
|
|
64
60
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
}
|
|
68
|
-
}
|
|
61
|
+
return
|
|
62
|
+
}
|
|
69
63
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
handleChange
|
|
73
|
-
}
|
|
64
|
+
if (props.nullable) {
|
|
65
|
+
emit('update:modelValue', null)
|
|
74
66
|
}
|
|
75
|
-
}
|
|
67
|
+
}
|
|
76
68
|
</script>
|
|
77
69
|
|
|
78
70
|
<style lang="postcss" scoped>
|
|
79
|
-
@import "@/assets/styles/variables";
|
|
80
|
-
|
|
81
71
|
.container {
|
|
82
72
|
display: flex;
|
|
83
73
|
}
|