@appscode/design-system 1.0.43-alpha.19 → 1.0.43-alpha.190

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.
Files changed (124) hide show
  1. package/base/utilities/_all.scss +6 -0
  2. package/base/utilities/_default.scss +269 -4
  3. package/base/utilities/_derived-variables.scss +0 -1
  4. package/base/utilities/_initial-variables.scss +17 -13
  5. package/base/utilities/_mixin.scss +1 -17
  6. package/base/utilities/_typography.scss +14 -4
  7. package/base/utilities/dark-theme.scss +9 -146
  8. package/components/_ac-accordion.scss +8 -4
  9. package/components/_ac-alert-box.scss +15 -7
  10. package/components/_ac-card.scss +33 -6
  11. package/components/_ac-code-highlight.scss +5 -1
  12. package/components/_ac-content-layout.scss +2 -2
  13. package/components/_ac-input.scss +63 -23
  14. package/components/_ac-multi-select.scss +187 -5
  15. package/components/_ac-options.scss +24 -9
  16. package/components/_ac-select-box.scss +13 -3
  17. package/components/_ac-table.scss +7 -5
  18. package/components/_ac-tabs.scss +42 -5
  19. package/components/_ac-terminal.scss +270 -0
  20. package/components/_all.scss +35 -0
  21. package/components/_app-drawer.scss +2 -2
  22. package/components/_breadcumb.scss +2 -0
  23. package/components/_buttons.scss +45 -36
  24. package/components/_card-body-wrapper.scss +2 -2
  25. package/components/_dashboard-header.scss +32 -0
  26. package/components/_direct-deploy.scss +69 -0
  27. package/components/_go-to-top.scss +1 -1
  28. package/components/_graph.scss +45 -0
  29. package/components/_image-upload.scss +5 -3
  30. package/components/_left-sidebar-menu.scss +193 -39
  31. package/components/_monaco-editor.scss +1 -1
  32. package/components/_navbar.scss +125 -8
  33. package/components/_overview-info.scss +4 -4
  34. package/components/_pagination.scss +8 -0
  35. package/components/_payment-card.scss +10 -1
  36. package/components/_preview-modal.scss +15 -4
  37. package/components/_pricing-table.scss +1 -1
  38. package/components/_progress-bar.scss +4 -4
  39. package/components/_subscription-card.scss +12 -5
  40. package/components/_table-of-content.scss +1 -1
  41. package/components/_tfa.scss +69 -0
  42. package/components/_transitions.scss +261 -0
  43. package/components/_wizard.scss +16 -3
  44. package/components/ac-toaster/_ac-toasted.scss +1 -1
  45. package/components/bbum/_card-team.scss +1 -1
  46. package/components/bbum/_information-center.scss +15 -1
  47. package/components/bbum/_sign-up-notification.scss +1 -1
  48. package/components/bbum/_single-post-preview.scss +1 -1
  49. package/components/bbum/_user-profile.scss +91 -90
  50. package/components/ui-builder/_ui-builder.scss +43 -3
  51. package/components/ui-builder/_vue-open-api.scss +104 -0
  52. package/layouts/_all.scss +2 -0
  53. package/layouts/_code-preview.scss +5 -2
  54. package/main.scss +4 -54
  55. package/package.json +2 -7
  56. package/plugins/theme.js +4 -0
  57. package/plugins/time-convert.js +49 -0
  58. package/plugins/vue-toaster.js +3 -0
  59. package/vue-components/v2/banner/Banner.vue +2 -2
  60. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  61. package/vue-components/v2/button/Button.vue +5 -0
  62. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  63. package/vue-components/v2/card/Card.vue +1 -0
  64. package/vue-components/v2/card/PaymentCards.vue +11 -2
  65. package/vue-components/v2/content/ContentTable.vue +12 -7
  66. package/vue-components/v2/editor/Editor.vue +38 -5
  67. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  68. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  69. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  70. package/vue-components/v2/form-fields/Input.vue +1 -1
  71. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  72. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  73. package/vue-components/v2/modal/Modal.vue +35 -4
  74. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  75. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  76. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  77. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  78. package/vue-components/v2/navbar/User.vue +202 -19
  79. package/vue-components/v2/notification/Notification.vue +101 -0
  80. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  81. package/vue-components/v2/preloader/Preloader.vue +5 -5
  82. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  83. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  84. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  85. package/vue-components/v2/tab/TabItem.vue +1 -1
  86. package/vue-components/v2/table/Table.vue +44 -8
  87. package/vue-components/v2/table/TableRow.vue +12 -2
  88. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  89. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  90. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  91. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  92. package/vue-components/v3/button/Button.vue +5 -0
  93. package/vue-components/v3/content/ContentTable.vue +5 -0
  94. package/vue-components/v3/editor/Editor.vue +50 -30
  95. package/vue-components/v3/editor/FilteredFileEditor.vue +184 -0
  96. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  97. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  98. package/vue-components/v3/form/Form.vue +63 -0
  99. package/vue-components/v3/form-fields/Input.vue +10 -10
  100. package/vue-components/v3/header/HeaderItem.vue +5 -0
  101. package/vue-components/v3/header/HeaderItems.vue +5 -0
  102. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  103. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  104. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  105. package/vue-components/v3/modal/Modal.vue +40 -16
  106. package/vue-components/v3/modals/DeleteConfirmationModal.vue +83 -0
  107. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  108. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  109. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  110. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  111. package/vue-components/v3/navbar/User.vue +190 -16
  112. package/vue-components/v3/notification/Notification.vue +98 -0
  113. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  114. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  115. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  116. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  117. package/vue-components/v3/table/Table.vue +35 -12
  118. package/vue-components/v3/table/TableContainer.vue +34 -0
  119. package/vue-components/v3/table/TableRow.vue +10 -2
  120. package/vue-components/v3/table/table-cell/CellValue.vue +26 -3
  121. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  122. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  123. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  124. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -0,0 +1,69 @@
1
+ .qr-code-wrapper {
2
+ background: $ac-blue-light;
3
+ width: 240px;
4
+ height: 240px;
5
+ padding: 20px;
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ border-radius: 4px;
10
+ .qr-code-inner {
11
+ position: relative;
12
+ z-index: 1;
13
+ padding: 20px;
14
+ height: 200px;
15
+ img {
16
+ object-fit: cover;
17
+ height: 160px;
18
+ width: 160px;
19
+ }
20
+ .scanner {
21
+ position: absolute;
22
+ content: "";
23
+ left: 0;
24
+ top: 0;
25
+ width: 100%;
26
+ height: 100%;
27
+ &.shape-1:after {
28
+ position: absolute;
29
+ content: "";
30
+ left: 0;
31
+ top: 0;
32
+ width: 20px;
33
+ height: 20px;
34
+ border-top: 1px solid $ac-color-heading;
35
+ border-left: 1px solid $ac-color-heading;
36
+ }
37
+ &.shape-1:before {
38
+ position: absolute;
39
+ content: "";
40
+ right: 0;
41
+ top: 0;
42
+ width: 20px;
43
+ height: 20px;
44
+ border-top: 1px solid $ac-color-heading;
45
+ border-right: 1px solid $ac-color-heading;
46
+ }
47
+ &.shape-2:after {
48
+ position: absolute;
49
+ content: "";
50
+ left: 0;
51
+ bottom: 0;
52
+ width: 20px;
53
+ height: 20px;
54
+ border-bottom: 1px solid $ac-color-heading;
55
+ border-left: 1px solid $ac-color-heading;
56
+ }
57
+ &.shape-2:before {
58
+ position: absolute;
59
+ content: "";
60
+ right: 0;
61
+ bottom: 0;
62
+ width: 20px;
63
+ height: 20px;
64
+ border-bottom: 1px solid $ac-color-heading;
65
+ border-right: 1px solid $ac-color-heading;
66
+ }
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,261 @@
1
+ .sidebar-appear-enter-active,
2
+ .sidebar-appear-leave-active {
3
+ position: absolute;
4
+ width: 270px;
5
+ transition: all 0.2s ease;
6
+ }
7
+ .sidebar-appear-enter-from {
8
+ left: -100%;
9
+ opacity: 0;
10
+ }
11
+ .sidebar-appear-enter-to {
12
+ left: 0px;
13
+ opacity: 1;
14
+ }
15
+ .sidebar-appear-leave-from {
16
+ left: 0px;
17
+ opacity: 1;
18
+ }
19
+ .sidebar-appear-leave-to {
20
+ left: 100%;
21
+ opacity: 0;
22
+ }
23
+
24
+ .navbar-appear-enter-active,
25
+ .navbar-appear-leave-active {
26
+ position: absolute;
27
+ height: 50px;
28
+ transition: all 0.2s ease;
29
+ }
30
+ .navbar-appear-enter-from {
31
+ top: -100%;
32
+ opacity: 0;
33
+ }
34
+ .navbar-appear-enter-to {
35
+ top: 0px;
36
+ opacity: 1;
37
+ }
38
+ .navbar-appear-leave-from {
39
+ top: 0px;
40
+ opacity: 1;
41
+ }
42
+ .navbar-appear-leave-to {
43
+ top: 100%;
44
+ opacity: 0;
45
+ }
46
+
47
+ .nested-enter-active .inner,
48
+ .nested-leave-active .inner {
49
+ transition: all 0.2s ease-in-out;
50
+ }
51
+
52
+ .nested-enter-from .inner,
53
+ .nested-leave-to .inner {
54
+ transform: translateX(20px);
55
+ opacity: 0;
56
+ }
57
+
58
+ .slide-left-enter-active,
59
+ .slide-left-leave-active {
60
+ transition: all 0.3s ease-in-out;
61
+ }
62
+ .slide-left-enter-from {
63
+ transform: translateX(20px);
64
+ opacity: 0;
65
+ }
66
+ .slide-left-enter-to {
67
+ transform: translateX(0px);
68
+ opacity: 1;
69
+ }
70
+ .slide-left-leave-from {
71
+ transform: translateX(0px);
72
+ opacity: 1;
73
+ }
74
+ .slide-left-leave-to {
75
+ transform: translateX(-20px);
76
+ opacity: 0;
77
+ }
78
+
79
+ .slide-right-enter-active,
80
+ .slide-right-leave-active {
81
+ transition: all 0.2s ease-in-out;
82
+ }
83
+ .slide-right-enter-from {
84
+ transform: translateX(-20px);
85
+ opacity: 0;
86
+ }
87
+ .slide-right-enter-to {
88
+ transform: translateX(0px);
89
+ opacity: 1;
90
+ }
91
+ .slide-right-leave-from {
92
+ transform: translateX(0px);
93
+ opacity: 1;
94
+ }
95
+ .slide-right-leave-to {
96
+ transform: translateX(20px);
97
+ opacity: 0;
98
+ }
99
+
100
+ .slide-down-enter-active,
101
+ .slide-down-leave-active {
102
+ transition: all 0.2s ease-in-out;
103
+ }
104
+ .slide-down-enter-from {
105
+ transform: translateY(-10px);
106
+ opacity: 0;
107
+ }
108
+ .slide-down-enter-to {
109
+ transform: translateY(0px);
110
+ opacity: 1;
111
+ }
112
+ .slide-down-leave-from {
113
+ transform: translateY(0px);
114
+ opacity: 1;
115
+ }
116
+ .slide-down-leave-to {
117
+ transform: translateY(-10px);
118
+ opacity: 0;
119
+ }
120
+
121
+ .fade-enter-active,
122
+ .fade-leave-active {
123
+ transition: all 0.2s ease-in-out;
124
+ }
125
+ .fade-enter-from {
126
+ opacity: 0;
127
+ }
128
+ .fade-enter-to {
129
+ opacity: 1;
130
+ }
131
+ .fade-leave-from {
132
+ opacity: 1;
133
+ }
134
+ .fade-leave-to {
135
+ opacity: 0;
136
+ }
137
+
138
+ .list-move, /* apply transition to moving elements */
139
+ .list-enter-active,
140
+ .list-leave-active {
141
+ transition: all 0.5s ease;
142
+ }
143
+
144
+ .list-enter-from,
145
+ .list-leave-to {
146
+ opacity: 0;
147
+ transform: translateX(35px);
148
+ }
149
+
150
+ .list-leave-active {
151
+ position: absolute;
152
+ }
153
+
154
+ .overview-card-enter-active {
155
+ transition: all 0.2s ease-in-out;
156
+ }
157
+ .overview-card-leave-active {
158
+ transition: all 0.2s ease-in-out;
159
+ position: absolute;
160
+ }
161
+ .overview-card-enter-from {
162
+ transform: translateY(-20px);
163
+ opacity: 0;
164
+ }
165
+ .overview-card-enter-to {
166
+ transform: translateY(0px);
167
+ opacity: 1;
168
+ }
169
+ .overview-card-leave-from {
170
+ transform: translateY(0px);
171
+ opacity: 1;
172
+ }
173
+ .overview-card-leave-to {
174
+ transform: translateY(-10px);
175
+ opacity: 0;
176
+ }
177
+
178
+ .cluster-card-enter-active {
179
+ transition: all 0.2s ease-in-out;
180
+ }
181
+ .cluster-card-leave-active {
182
+ transition: all 0s;
183
+ position: absolute;
184
+ }
185
+ .cluster-card-enter-from {
186
+ transform: translateX(-20px);
187
+ opacity: 0;
188
+ }
189
+ .cluster-card-enter-to {
190
+ transform: translateX(0px);
191
+ opacity: 1;
192
+ }
193
+ .cluster-card-leave-from {
194
+ transform: translateX(0px);
195
+ opacity: 1;
196
+ }
197
+ .cluster-card-leave-to {
198
+ opacity: 0;
199
+ }
200
+
201
+ .dropdown-animate.dropdown-show-animation .dropdown-content {
202
+ animation: dropdownAnim 0.2s ease-in-out;
203
+ }
204
+ .dropdown-animate.dropdown-hide-animation .dropdown-content {
205
+ animation: dropdownAnim reverse 0.2s ease-in-out;
206
+ }
207
+
208
+ @keyframes dropdownAnim {
209
+ 0% {
210
+ opacity: 0;
211
+ transform: translateY(-10px);
212
+ }
213
+ 100% {
214
+ opacity: 1;
215
+ transform: translateY(0px);
216
+ }
217
+ }
218
+
219
+ .accordion-enter-active,
220
+ .accordion-leave-active {
221
+ transition: all 0.3s ease-in-out;
222
+ position: relative;
223
+ }
224
+ .accordion-enter-from {
225
+ top: -10px;
226
+ opacity: 0;
227
+ }
228
+ .accordion-enter-to {
229
+ top: 0px;
230
+ opacity: 1;
231
+ }
232
+ .accordion-leave-from {
233
+ top: 0px;
234
+ opacity: 1;
235
+ }
236
+ .accordion-leave-to {
237
+ top: -10px;
238
+ opacity: 0;
239
+ }
240
+
241
+ .fa.fa-spinner.spin {
242
+ -webkit-animation: spin 1s linear infinite;
243
+ -moz-animation: spinAnim 1s linear infinite;
244
+ animation: spinAnim 1s linear infinite;
245
+ }
246
+ @-moz-keyframes spinAnim {
247
+ 100% {
248
+ -moz-transform: rotate(360deg);
249
+ }
250
+ }
251
+ @-webkit-keyframes spinAnim {
252
+ 100% {
253
+ -webkit-transform: rotate(360deg);
254
+ }
255
+ }
256
+ @keyframes spinAnim {
257
+ 100% {
258
+ -webkit-transform: rotate(360deg);
259
+ transform: rotate(360deg);
260
+ }
261
+ }
@@ -121,6 +121,7 @@
121
121
  transition: 0.3s ease-in-out;
122
122
  position: relative;
123
123
  z-index: 1;
124
+ max-width: 250px;
124
125
 
125
126
  &.is-active-require-field {
126
127
  &:after {
@@ -572,7 +573,7 @@
572
573
  .wizard-title,
573
574
  .wizard-title.has-line {
574
575
  span {
575
- background-color: $ac-border;
576
+ background-color: $ac-label-text;
576
577
  }
577
578
  }
578
579
 
@@ -651,7 +652,7 @@ label {
651
652
  margin-top: -0.5px;
652
653
  width: 100%;
653
654
  height: 1px;
654
- background-color: $ac-input-bg-color;
655
+ background-color: $ac-blue-light;
655
656
  z-index: -1;
656
657
  }
657
658
  }
@@ -731,7 +732,7 @@ h5 {
731
732
  .card-checkbox {
732
733
  width: 358px;
733
734
  height: 115px;
734
- border: 1px solid $ac-border;
735
+ border: 1px solid $ac-label-text;
735
736
  }
736
737
 
737
738
  // checkbox card end
@@ -823,6 +824,18 @@ h5 {
823
824
  }
824
825
 
825
826
  // inline input end
827
+
828
+ // dark theme start
829
+ .is-dark-theme {
830
+ h6.wizard-title.has-line:after {
831
+ --ac-blue-light: $ac-color-value;
832
+ }
833
+
834
+ .ac-certificate-info {
835
+ --ac-bg-light-gray: var(--dark-bg-light);
836
+ }
837
+ }
838
+ // dark theme end
826
839
  /****************************************
827
840
  Responsive Classes
828
841
  *****************************************/
@@ -10,7 +10,7 @@
10
10
  border-radius: 4px !important;
11
11
 
12
12
  * {
13
- color: #fff !important;
13
+ color: $ac-white !important;
14
14
  }
15
15
 
16
16
  p {
@@ -7,7 +7,7 @@
7
7
  0.03
8
8
  );
9
9
  border-radius: 4px;
10
- overflow: hidden;
10
+ // overflow: hidden;
11
11
  transition: 0.3s ease-in-out;
12
12
 
13
13
  &:hover {
@@ -133,7 +133,7 @@
133
133
  }
134
134
 
135
135
  .block-list {
136
- background-color: $ac-input-bg-color;
136
+ background-color: $ac-blue-light;
137
137
  padding: 7px;
138
138
  border-radius: 4px;
139
139
 
@@ -174,6 +174,20 @@
174
174
  top: 140px;
175
175
  }
176
176
  }
177
+
178
+ // dark theme start
179
+ .is-dark-theme {
180
+ .information-center {
181
+ .information-center-inner {
182
+ .info-body {
183
+ .block-list {
184
+ background-color: var(--dark-bg-light);
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ // dark theme end
177
191
  // Extra small devices (portrait phones, less than 576px)
178
192
  @media (max-width: 575.98px) {
179
193
  .information-center.width-300 {
@@ -68,7 +68,7 @@
68
68
  margin-bottom: 10px;
69
69
 
70
70
  a {
71
- color: #003466;
71
+ color: $ac-color-heading;
72
72
  text-decoration: underline;
73
73
  }
74
74
  }
@@ -137,7 +137,7 @@
137
137
  h2 {
138
138
  font-size: $ac-size-2;
139
139
  margin-bottom: 25px;
140
- color: #003466;
140
+ color: $ac-color-heading;
141
141
  }
142
142
  }
143
143
  }
@@ -1,109 +1,110 @@
1
- .user-profile-wrapper {
2
- padding: 20px;
3
- border-right: 1px solid $ac-white-light;
4
- height: calc(100vh - 52px);
5
- position: sticky;
6
- top: 52px;
7
-
8
- .user-profile-photo {
9
- background-color: $ac-white;
10
- border-radius: 4px;
11
- overflow: hidden;
12
- padding: 10px;
13
- position: relative;
14
- z-index: 1;
15
- margin-bottom: 10px;
16
-
17
- .thumbnail {
18
- height: 240px;
19
- background-size: cover;
20
- background-position: center;
21
- background-color: $ac-gray-lightest;
22
- background-repeat: no-repeat;
23
- border-radius: 10px;
24
-
25
- &.profile-1 {
26
- background-image: url("~@appscode/design-system-images/icons/appscode-large-icon.jpg");
27
- }
28
- }
29
-
30
- .setting-button {
31
- position: absolute;
32
- left: 15px;
33
- top: 15px;
34
- font-size: 18px;
35
- color: $ac-white;
36
- background-color: transparent;
37
- border: none;
38
- cursor: pointer;
39
- }
40
- }
41
-
42
- .profile-information {
43
- .profile-top-info {
44
- display: flex;
45
- align-items: center;
46
- justify-content: space-between;
1
+ .ac-system-body.bb-user-management {
2
+ .user-profile-wrapper {
3
+ padding: 20px;
4
+ border-right: 1px solid $ac-white-light;
5
+ height: calc(100vh - 52px);
6
+ position: sticky;
7
+ top: 52px;
8
+
9
+ .user-profile-photo {
10
+ background-color: $ac-white;
11
+ border-radius: 4px;
12
+ overflow: hidden;
13
+ position: relative;
14
+ z-index: 1;
47
15
  margin-bottom: 10px;
48
16
 
49
- h3 {
50
- font-size: 26px;
51
- line-height: 1.4;
17
+ .thumbnail {
18
+ height: 240px;
19
+ background-size: cover;
20
+ background-position: center;
21
+ background-color: $ac-gray-lightest;
22
+ background-repeat: no-repeat;
23
+ border-radius: 10px;
52
24
 
53
- span {
54
- font-size: 14px;
55
- line-height: 1.5;
56
- font-weight: 400;
57
- display: block;
58
- color: $ac-color-value;
25
+ &.profile-1 {
26
+ background-image: url("~@appscode/design-system-images/icons/appscode-large-icon.jpg");
59
27
  }
60
28
  }
61
- }
62
-
63
- .edit-icon {
64
- max-width: 16px;
65
- }
66
29
 
67
- p {
68
- font-size: 14px;
69
- color: $ac-color-text;
70
- line-height: 160%;
71
- margin-bottom: 20px;
30
+ .setting-button {
31
+ position: absolute;
32
+ left: 15px;
33
+ top: 15px;
34
+ font-size: 18px;
35
+ color: $ac-white;
36
+ background-color: transparent;
37
+ border: none;
38
+ cursor: pointer;
39
+ }
72
40
  }
73
41
 
74
- .social-links {
75
- margin-bottom: 20px;
76
-
77
- a {
78
- max-width: 26px;
79
- margin-right: 10px;
80
- display: inline-block;
42
+ .profile-information {
43
+ .profile-top-info {
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: space-between;
47
+ margin-bottom: 10px;
81
48
 
82
- &:last-child {
83
- margin-right: 0;
49
+ h3 {
50
+ font-size: 26px;
51
+ line-height: 1.4;
52
+
53
+ span {
54
+ font-size: 14px;
55
+ line-height: 1.5;
56
+ font-weight: 400;
57
+ display: block;
58
+ color: $ac-color-value;
59
+ }
84
60
  }
61
+ }
85
62
 
86
- img {
87
- width: 100%;
88
- }
63
+ .edit-icon {
64
+ max-width: 16px;
89
65
  }
90
- }
91
- .website-link {
92
- margin-top: 20px;
93
66
 
94
- a {
95
- color: $ac-primary;
96
- display: flex;
97
- align-items: center;
67
+ p {
68
+ font-size: 14px;
69
+ color: $ac-color-text;
70
+ line-height: 160%;
98
71
  margin-bottom: 10px;
99
- font-size: 13px;
100
- &:last-child {
101
- margin-bottom: 0;
102
- }
72
+ }
103
73
 
104
- img {
105
- max-width: 18px;
74
+ .social-links {
75
+ margin-bottom: 20px;
76
+
77
+ a {
78
+ max-width: 26px;
106
79
  margin-right: 10px;
80
+ display: inline-block;
81
+
82
+ &:last-child {
83
+ margin-right: 0;
84
+ }
85
+
86
+ img {
87
+ width: 100%;
88
+ }
89
+ }
90
+ }
91
+ .website-link {
92
+ margin-top: 20px;
93
+
94
+ a {
95
+ color: $ac-primary;
96
+ display: flex;
97
+ align-items: center;
98
+ margin-bottom: 10px;
99
+ font-size: 13px;
100
+ &:last-child {
101
+ margin-bottom: 0;
102
+ }
103
+
104
+ img {
105
+ max-width: 15px;
106
+ margin-right: 10px;
107
+ }
107
108
  }
108
109
  }
109
110
  }