mario-teacher-student-client 9000.0.20 → 9000.0.23

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.
@@ -4,6 +4,7 @@ interface Props {
4
4
  label: string;
5
5
  backgroundColor?: string;
6
6
  handleClickOpen?: any;
7
+ width?: string;
7
8
  }
8
9
  declare const AddButton: FC<Props>;
9
10
  export default AddButton;
@@ -10,5 +10,6 @@ declare const useDoneList: () => {
10
10
  }>) => void;
11
11
  changeFilters: (updateFilters: any) => void;
12
12
  filters: any;
13
+ isTeacher: any;
13
14
  };
14
15
  export default useDoneList;
@@ -18,7 +18,7 @@ export interface FORM_REQUEST {
18
18
  teacherId?: number;
19
19
  title?: string;
20
20
  class?: string;
21
- deadline?: number;
21
+ deadline?: number | null;
22
22
  notiCount?: number;
23
23
  notiDuration?: string;
24
24
  isDone?: boolean;
@@ -27,5 +27,6 @@ declare const useConductOne: () => {
27
27
  second: number;
28
28
  category: string;
29
29
  setCategory: import("react").Dispatch<import("react").SetStateAction<string>>;
30
+ classFontSize: string;
30
31
  };
31
32
  export default useConductOne;
@@ -1,7 +1,13 @@
1
+ interface Props {
2
+ bestfit: string;
3
+ content: string;
4
+ name: string;
5
+ id: number;
6
+ }
1
7
  declare const useEditLearningStrategies: () => {
2
8
  learningStrategyData: any;
3
- selectLearning: (checked: boolean, data: any) => void;
4
- handleChangeNote: (e: string, index: number) => void;
9
+ selectLearning: (checked: boolean, data: Props) => void;
10
+ handleChangeNote: (e: string, id: number) => void;
5
11
  changeFilters: (e: string) => void;
6
12
  filters: {
7
13
  studentId: any;
@@ -11,5 +17,8 @@ declare const useEditLearningStrategies: () => {
11
17
  selectData: any;
12
18
  handleAddLearningStrategy: () => Promise<void>;
13
19
  backToLearningStrategy: () => void;
20
+ handleCheckSelectItem: (id: number) => boolean;
21
+ handleShowNote: (id: number) => any;
22
+ handleShowSelectItemCount: () => number;
14
23
  };
15
24
  export default useEditLearningStrategies;
@@ -5,5 +5,6 @@ declare const useSessionCompleted: () => {
5
5
  selectFavourite: (itemID: string) => Promise<void>;
6
6
  changRouteQuestion: (studentId: number) => Promise<void>;
7
7
  convertTimeSecond: (timeSecond: any) => string;
8
+ classFontSize: string;
8
9
  };
9
10
  export default useSessionCompleted;
@@ -20,5 +20,6 @@ declare const useUpComing: () => {
20
20
  getAllNoteConference: (sessionId: any) => Promise<void>;
21
21
  updateConferenceRubricPrivateNote: (privateNote: any, conferenceId: any) => Promise<void>;
22
22
  deleteNoteConference: (noteId: any, sessionId: any) => Promise<void>;
23
+ classFontSize: string;
23
24
  };
24
25
  export default useUpComing;
@@ -65,6 +65,7 @@ export interface CLASS_REFLECTION {
65
65
  teacherAvatar?: string;
66
66
  IsDescending?: boolean;
67
67
  studentName?: string;
68
+ receiviedDate?: any;
68
69
  }
69
70
  export interface QuestionAnswer {
70
71
  id: number;
@@ -6,15 +6,16 @@ declare const useNote: () => {
6
6
  startDate: any;
7
7
  endDate: any;
8
8
  allNoteList: any;
9
- onChangeSearch: (e: any) => void;
9
+ handleChangeInputSearch: (event: React.ChangeEvent<HTMLInputElement>) => void;
10
10
  search: string;
11
11
  onClickFavorite: (event: React.ChangeEvent<HTMLInputElement>) => void;
12
12
  addNoteLink: () => void;
13
13
  viewItemNoteLink: (id: number, typeNoteString: string) => void;
14
14
  viewListNote: () => void;
15
- inputSearch: import("react").MutableRefObject<any>;
16
15
  updateFavorite: (id: number, favorite: boolean) => Promise<void>;
17
16
  category: number;
18
17
  handleChangeCategory: (event: React.ChangeEvent<HTMLSelectElement>) => void;
18
+ dataNoteAllSelect: () => Promise<void>;
19
+ inputSearch: import("react").MutableRefObject<any>;
19
20
  };
20
21
  export default useNote;
package/dist/index.css CHANGED
@@ -127,6 +127,18 @@ p._1YLGi {
127
127
  display: flex;
128
128
  align-items: center;
129
129
  margin-bottom: 20px; }
130
+ ._2gqE-._3Sup6 p._1gs0Z {
131
+ font-size: 20px !important; }
132
+ ._2gqE-._3Sup6 ._t-JhH p:nth-child(1) {
133
+ font-size: 18px; }
134
+ ._2gqE-._3Sup6 ._t-JhH p:nth-child(2) {
135
+ font-size: 20px; }
136
+ ._2gqE-._2JnMg p._1gs0Z {
137
+ font-size: 12px !important; }
138
+ ._2gqE-._2JnMg ._t-JhH p:nth-child(1) {
139
+ font-size: 12px; }
140
+ ._2gqE-._2JnMg ._t-JhH p:nth-child(2) {
141
+ font-size: 14px; }
130
142
  @media (max-width: 767px) {
131
143
  ._2gqE- {
132
144
  display: block; } }
@@ -142,6 +154,18 @@ p._1YLGi {
142
154
  align-items: center;
143
155
  margin-bottom: 20px;
144
156
  flex-wrap: wrap; }
157
+ ._p-cUG._3Sup6 p._1gs0Z {
158
+ font-size: 20px !important; }
159
+ ._p-cUG._3Sup6 ._t-JhH p:nth-child(1) {
160
+ font-size: 18px; }
161
+ ._p-cUG._3Sup6 ._t-JhH p:nth-child(2) {
162
+ font-size: 20px; }
163
+ ._p-cUG._2JnMg p._1gs0Z {
164
+ font-size: 12px !important; }
165
+ ._p-cUG._2JnMg ._t-JhH p:nth-child(1) {
166
+ font-size: 12px; }
167
+ ._p-cUG._2JnMg ._t-JhH p:nth-child(2) {
168
+ font-size: 14px; }
145
169
  ._p-cUG ._337MJ {
146
170
  flex: 1 0 30%; }
147
171
  ._p-cUG ._k_dl- {
@@ -206,6 +230,10 @@ p._1YLGi {
206
230
  ._KKK4u {
207
231
  display: flex;
208
232
  flex-wrap: wrap; }
233
+ ._KKK4u._3Sup6 ._1k7-R span {
234
+ font-size: 20px !important; }
235
+ ._KKK4u._2JnMg ._1k7-R span {
236
+ font-size: 12px !important; }
209
237
  ._KKK4u ._1k7-R {
210
238
  margin-right: 20px;
211
239
  margin-top: 12px;
@@ -480,6 +508,14 @@ p._1YLGi {
480
508
  font-weight: bold;
481
509
  line-height: 40px; }
482
510
 
511
+ ._2RwcR {
512
+ display: flex;
513
+ flex-wrap: wrap;
514
+ justify-content: space-between; }
515
+ @media (max-width: 1350px) {
516
+ ._2RwcR {
517
+ justify-content: flex-start; } }
518
+
483
519
  @font-face {
484
520
  font-family: "Lato-Regular";
485
521
  src: url("/fonts/Lato-Regular.ttf");
@@ -520,7 +556,8 @@ p._1YLGi {
520
556
  margin-top: 20px; }
521
557
 
522
558
  ._2pCuD {
523
- display: flex; }
559
+ display: flex;
560
+ flex-wrap: wrap; }
524
561
  @media (max-width: 767px) {
525
562
  ._2pCuD {
526
563
  display: block; } }
@@ -532,6 +569,7 @@ p._1YLGi {
532
569
  border: 3px solid #156da1;
533
570
  margin-right: 16px;
534
571
  border-radius: 9px;
572
+ margin-bottom: 16px;
535
573
  background-color: #ffffff; }
536
574
  ._ppOfL ._3DN3c {
537
575
  font-size: 17px;
@@ -597,7 +635,7 @@ p._1YLGi {
597
635
  background-color: #ffffff;
598
636
  border: 3px solid #156da1;
599
637
  border-radius: 10px;
600
- margin: 20px 16px 0 0;
638
+ margin: 0px 16px 0 0;
601
639
  position: relative; }
602
640
  @media (max-width: 767px) {
603
641
  ._26M4Q {
@@ -657,6 +695,9 @@ p._1YLGi {
657
695
  background: #00000005;
658
696
  color: #0369A1; }
659
697
 
698
+ ._1XobX {
699
+ width: 30%; }
700
+
660
701
  ._3TnaX {
661
702
  display: flex;
662
703
  justify-content: space-between;
@@ -814,6 +855,36 @@ p._1YLGi {
814
855
  ._9bJE3 th:last-child {
815
856
  border-right: none; }
816
857
 
858
+ ._9bJE3._2xoD2 td,
859
+ ._9bJE3._2xoD2 th, ._9bJE3._2xoD2 ._2y4hI, ._9bJE3._2xoD2 ._2olkq, ._9bJE3._2xoD2 ._yS2sJ, ._9bJE3._2xoD2 ._3PjVZ {
860
+ font-size: 20px !important; }
861
+
862
+ ._9bJE3._2xoD2 td ._3HBOZ, ._9bJE3._2xoD2 td svg {
863
+ font-size: 20px !important; }
864
+
865
+ ._9bJE3._2xoD2 ._yS2sJ button span {
866
+ font-size: 20px !important; }
867
+
868
+ ._9bJE3._2xoD2 th ._2ZoYJ {
869
+ font-size: 20px !important; }
870
+ ._9bJE3._2xoD2 th ._2ZoYJ ._1IZ5- {
871
+ font-size: 20px !important; }
872
+
873
+ ._9bJE3._3106c td,
874
+ ._9bJE3._3106c th, ._9bJE3._3106c ._2y4hI, ._9bJE3._3106c ._2olkq, ._9bJE3._3106c ._yS2sJ, ._9bJE3._3106c ._3PjVZ {
875
+ font-size: 12px !important; }
876
+
877
+ ._9bJE3._3106c td ._3HBOZ, ._9bJE3._3106c td svg {
878
+ font-size: 12px !important; }
879
+
880
+ ._9bJE3._3106c ._yS2sJ button span {
881
+ font-size: 12px !important; }
882
+
883
+ ._9bJE3._3106c th ._2ZoYJ {
884
+ font-size: 12px !important; }
885
+ ._9bJE3._3106c th ._2ZoYJ ._1IZ5- {
886
+ font-size: 12px !important; }
887
+
817
888
  ._2z25F {
818
889
  position: relative;
819
890
  border: 1px solid rgba(0, 0, 0, 0.54);
@@ -1561,6 +1632,11 @@ p._1YLGi {
1561
1632
  font-size: 12px;
1562
1633
  margin-left: 8px; }
1563
1634
 
1635
+ ._YCahH {
1636
+ margin-top: 15px; }
1637
+ ._YCahH > div > label {
1638
+ color: rgba(0, 0, 0, 0.87) !important; }
1639
+
1564
1640
  @font-face {
1565
1641
  font-family: "Lato-Regular";
1566
1642
  src: url("/fonts/Lato-Regular.ttf");
@@ -2128,6 +2204,20 @@ p._1YLGi {
2128
2204
  ._3A-A9 {
2129
2205
  background: #efefef;
2130
2206
  min-height: calc(100vh - 64px); }
2207
+ ._3A-A9._CvEXW ._3mJSQ ._3RuBx, ._3A-A9._CvEXW ._2hOFE, ._3A-A9._CvEXW p._1bzoU, ._3A-A9._CvEXW h2._1OAmb,
2208
+ ._3A-A9._CvEXW ._3ijmc h2, ._3A-A9._CvEXW p._3aoT5, ._3A-A9._CvEXW ._Firjr label, ._3A-A9._CvEXW ._mzLvX p, ._3A-A9._CvEXW ._T1fJ4 span {
2209
+ font-size: 20px !important; }
2210
+ ._3A-A9._CvEXW ._3-Mx5 p:nth-child(1) {
2211
+ font-size: 18px !important; }
2212
+ ._3A-A9._CvEXW ._3-Mx5 p:nth-child(2) {
2213
+ font-size: 20px !important; }
2214
+ ._3A-A9._XhgGV ._3mJSQ ._3RuBx, ._3A-A9._XhgGV ._2hOFE, ._3A-A9._XhgGV p._1bzoU, ._3A-A9._XhgGV h2._1OAmb,
2215
+ ._3A-A9._XhgGV ._3ijmc h2, ._3A-A9._XhgGV p._3aoT5, ._3A-A9._XhgGV ._Firjr label, ._3A-A9._XhgGV ._mzLvX p, ._3A-A9._XhgGV ._T1fJ4 span {
2216
+ font-size: 12px !important; }
2217
+ ._3A-A9._XhgGV ._3-Mx5 p:nth-child(1) {
2218
+ font-size: 12px !important; }
2219
+ ._3A-A9._XhgGV ._3-Mx5 p:nth-child(2) {
2220
+ font-size: 14px !important; }
2131
2221
 
2132
2222
  ._1saEt {
2133
2223
  padding: 75px 16px 0 16px; }
@@ -2173,6 +2263,15 @@ p._1YLGi {
2173
2263
  font-weight: 800;
2174
2264
  margin-top: 5px; }
2175
2265
 
2266
+ ._2Sccu {
2267
+ overflow: hidden;
2268
+ line-height: 18px;
2269
+ display: -webkit-box;
2270
+ -webkit-line-clamp: 2;
2271
+ word-wrap: break-word;
2272
+ text-overflow: ellipsis;
2273
+ -webkit-box-orient: vertical; }
2274
+
2176
2275
  ._3-Mx5 p:nth-child(1) {
2177
2276
  color: #2d3748;
2178
2277
  font-size: 18px;
@@ -2283,8 +2382,7 @@ h2._1OAmb {
2283
2382
  margin-bottom: 15px; }
2284
2383
  ._2HAFW ._1rCfd {
2285
2384
  font-size: 18px;
2286
- font-weight: 600;
2287
- word-wrap: break-word; }
2385
+ font-weight: 600; }
2288
2386
  ._2HAFW ._3qkoh ._R5ivj {
2289
2387
  padding: 4px;
2290
2388
  margin-top: -36px; }
@@ -2550,14 +2648,18 @@ h2._1OAmb {
2550
2648
  ._m1FkD ._3bMn1 ._DRbPW {
2551
2649
  border-bottom: 1px solid #c4c4c4;
2552
2650
  text-align: center;
2553
- padding: 14px 0px; }
2651
+ padding: 14px 0px;
2652
+ cursor: pointer; }
2554
2653
  ._m1FkD ._3bMn1 ._37XQi {
2555
2654
  padding: 12px; }
2556
2655
  ._m1FkD ._3bMn1 ._37XQi ._lJNUX {
2557
2656
  font-size: 14px;
2558
2657
  padding: 3px 0px;
2559
2658
  text-align: center;
2560
- color: rgba(0, 0, 0, 0.36); }
2659
+ color: rgba(0, 0, 0, 0.36);
2660
+ width: 50px;
2661
+ overflow: hidden;
2662
+ text-overflow: ellipsis; }
2561
2663
  ._m1FkD ._3bMn1 ._37XQi ._3SStr {
2562
2664
  font-size: 14px;
2563
2665
  padding: 3px 0px;
@@ -2694,6 +2796,7 @@ h2._1OAmb {
2694
2796
  padding-right: 20px;
2695
2797
  width: 100% !important; }
2696
2798
  ._m1FkD ._2ta7E ._1XT7v {
2799
+ z-index: 1500;
2697
2800
  background: #308252;
2698
2801
  display: flex;
2699
2802
  justify-content: center;
@@ -2934,7 +3037,7 @@ h2._1OAmb {
2934
3037
  font-family: "Roboto";
2935
3038
  font-size: 16px;
2936
3039
  font-weight: 400;
2937
- width: 20vw; }
3040
+ width: 30vw; }
2938
3041
 
2939
3042
  ._2ytmF {
2940
3043
  width: 52px;
@@ -2947,7 +3050,7 @@ h2._1OAmb {
2947
3050
 
2948
3051
  ._2RP6e {
2949
3052
  overflow-y: auto;
2950
- height: 52%;
3053
+ height: 52vh;
2951
3054
  margin-bottom: 10px; }
2952
3055
 
2953
3056
  ._zyDqv {
@@ -2991,6 +3094,24 @@ h2._1OAmb {
2991
3094
  ._SGD0h {
2992
3095
  cursor: pointer; }
2993
3096
 
3097
+ @media screen and (min-height: 100px) {
3098
+ ._2RP6e {
3099
+ overflow-y: auto;
3100
+ height: 20vh;
3101
+ margin-bottom: 10px; } }
3102
+
3103
+ @media screen and (min-height: 760px) {
3104
+ ._2RP6e {
3105
+ overflow-y: auto;
3106
+ height: 30vh;
3107
+ margin-bottom: 10px; } }
3108
+
3109
+ @media screen and (min-height: 930px) {
3110
+ ._2RP6e {
3111
+ overflow-y: auto;
3112
+ height: 40vh;
3113
+ margin-bottom: 10px; } }
3114
+
2994
3115
  @font-face {
2995
3116
  font-family: "Lato-Regular";
2996
3117
  src: url("/fonts/Lato-Regular.ttf");
@@ -4476,6 +4597,23 @@ h2._1OAmb {
4476
4597
  color: #3182CE;
4477
4598
  background: rgba(186, 213, 248, 0.5); }
4478
4599
 
4600
+ ._23F1r {
4601
+ display: flex;
4602
+ align-items: center;
4603
+ justify-content: space-between;
4604
+ padding: 20px 0; }
4605
+ ._23F1r ._htNcj {
4606
+ display: flex;
4607
+ align-items: center;
4608
+ justify-content: space-between; }
4609
+ ._23F1r ._htNcj ._2jl3g {
4610
+ display: flex;
4611
+ align-items: center;
4612
+ padding-left: 15px; }
4613
+ ._23F1r ._htNcj ._2jl3g > p {
4614
+ font-weight: 400;
4615
+ font-size: 14px; }
4616
+
4479
4617
  @font-face {
4480
4618
  font-family: "Lato-Regular";
4481
4619
  src: url("/fonts/Lato-Regular.ttf");
@@ -7072,8 +7210,8 @@ h2._1KpSK {
7072
7210
  ._16DL6 {
7073
7211
  display: flex;
7074
7212
  align-items: center;
7075
- justify-content: flex-end;
7076
- padding: 20px 0; }
7213
+ padding: 20px 0;
7214
+ justify-content: flex-end; }
7077
7215
  ._16DL6 ._D3iMS {
7078
7216
  display: flex;
7079
7217
  align-items: center;
@@ -7145,6 +7283,22 @@ h2._1KpSK {
7145
7283
  ._3WAzH {
7146
7284
  color: red; }
7147
7285
 
7286
+ ._3kupr {
7287
+ align-items: center;
7288
+ padding: 20px 0;
7289
+ justify-content: space-between; }
7290
+ ._3kupr ._D3iMS {
7291
+ display: flex;
7292
+ align-items: center;
7293
+ justify-content: space-between; }
7294
+ ._3kupr ._D3iMS ._336Y6 {
7295
+ display: flex;
7296
+ align-items: center;
7297
+ padding-left: 15px; }
7298
+ ._3kupr ._D3iMS ._336Y6 > p {
7299
+ font-weight: 400;
7300
+ font-size: 14px; }
7301
+
7148
7302
  @font-face {
7149
7303
  font-family: "Lato-Regular";
7150
7304
  src: url("/fonts/Lato-Regular.ttf");
@@ -7313,6 +7467,22 @@ h2._1KpSK {
7313
7467
  ._QCm7u {
7314
7468
  color: red; }
7315
7469
 
7470
+ ._2qCMB {
7471
+ align-items: center;
7472
+ justify-content: space-between;
7473
+ padding: 20px 0; }
7474
+ ._2qCMB ._36FGn {
7475
+ display: flex;
7476
+ align-items: center;
7477
+ justify-content: space-between; }
7478
+ ._2qCMB ._3JYbC {
7479
+ display: flex;
7480
+ align-items: center;
7481
+ padding-left: 15px; }
7482
+ ._2qCMB ._3JYbC > p {
7483
+ font-weight: 400;
7484
+ font-size: 14px; }
7485
+
7316
7486
  @font-face {
7317
7487
  font-family: "Lato-Regular";
7318
7488
  src: url("/fonts/Lato-Regular.ttf");
@@ -7458,6 +7628,25 @@ h2._1KpSK {
7458
7628
  ._2T-ZP {
7459
7629
  color: red; }
7460
7630
 
7631
+ ._2C9VW {
7632
+ align-items: center;
7633
+ display: flex;
7634
+ justify-content: space-between;
7635
+ padding: 20px 0; }
7636
+ ._2C9VW ._3b7qo {
7637
+ display: flex;
7638
+ align-items: center;
7639
+ justify-content: space-between; }
7640
+ ._2C9VW ._3b7qo ._1tygR {
7641
+ width: 300px; }
7642
+ ._2C9VW ._3b7qo ._MKx6q {
7643
+ display: flex;
7644
+ align-items: center;
7645
+ padding-left: 15px; }
7646
+ ._2C9VW ._3b7qo ._MKx6q > p {
7647
+ font-weight: 400;
7648
+ font-size: 14px; }
7649
+
7461
7650
  ._13S5J {
7462
7651
  background: #FFFFFF;
7463
7652
  box-shadow: 0px 3px 12px 2px rgba(0, 0, 0, 0.12);
@@ -8269,6 +8458,8 @@ button._kb6Ui {
8269
8458
  background: #308252;
8270
8459
  color: white;
8271
8460
  padding: 0 24px; }
8461
+ ._1ip3G ._11XJ0:hover, ._1ip3G ._3jMMl:hover {
8462
+ background-color: #308252; }
8272
8463
  ._1ip3G ._1wRYk {
8273
8464
  font-size: 24px;
8274
8465
  font-weight: bold; }
@@ -8334,6 +8525,9 @@ button._kb6Ui {
8334
8525
  display: flex;
8335
8526
  padding-left: 15px; }
8336
8527
  ._2Kqyy ._CqXeM ._2RMhs ._15B2X {
8528
+ max-width: 40vw;
8529
+ overflow: hidden;
8530
+ text-overflow: ellipsis;
8337
8531
  margin-left: 10px;
8338
8532
  color: #1A202C;
8339
8533
  font-weight: 400;
@@ -8351,7 +8545,10 @@ button._kb6Ui {
8351
8545
  ._2Kqyy ._CqXeM ._oTRhw ._FmE78 {
8352
8546
  font-size: 20px;
8353
8547
  font-weight: 700;
8354
- font-family: "Roboto", sans-serif !important; }
8548
+ font-family: "Roboto", sans-serif !important;
8549
+ max-width: 50vw;
8550
+ text-overflow: ellipsis;
8551
+ overflow: hidden; }
8355
8552
  ._2Kqyy ._CqXeM ._oTRhw ._yC3LF {
8356
8553
  font-weight: bold;
8357
8554
  font-size: 16px;
@@ -8360,7 +8557,10 @@ button._kb6Ui {
8360
8557
  color: #1A202C;
8361
8558
  font-weight: 400;
8362
8559
  font-size: 16px;
8363
- font-family: "Roboto", sans-serif !important; }
8560
+ font-family: "Roboto", sans-serif !important;
8561
+ max-width: 50vw;
8562
+ text-overflow: ellipsis;
8563
+ overflow: hidden; }
8364
8564
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 {
8365
8565
  margin-left: 50px; }
8366
8566
  ._2Kqyy ._CqXeM ._oTRhw ._319e5 ._3dAV2 {
@@ -8751,6 +8951,10 @@ button._kb6Ui {
8751
8951
  ._2HzpQ {
8752
8952
  margin-top: 35px; }
8753
8953
 
8954
+ ._37WbA {
8955
+ display: flex;
8956
+ flex-grow: 3; }
8957
+
8754
8958
  ._1bNL_ ._3EN4b {
8755
8959
  font-size: 16px;
8756
8960
  font-weight: 400; }
@@ -8812,6 +9016,10 @@ button._kb6Ui {
8812
9016
  ._3UWpG {
8813
9017
  margin-top: 35px; }
8814
9018
 
9019
+ ._3Vo2f {
9020
+ display: flex;
9021
+ flex-grow: 3; }
9022
+
8815
9023
  @font-face {
8816
9024
  font-family: "Lato-Regular";
8817
9025
  src: url("/fonts/Lato-Regular.ttf");