File tree 3 files changed +2391
-1
lines changed 3 files changed +2391
-1
lines changed Original file line number Diff line number Diff line change
1
+ <script >
2
+ export let LabelCollab
3
+ export let message = ' No text'
4
+ </script >
5
+
6
+ <style >
7
+ .label-collab {
8
+ /* size */
9
+ display : inline-block ;
10
+ width : var (--size-biggest );
11
+ height : var (--size-normal );
12
+ margin : 0 var (--gap-small ) 0 ;
13
+ box-sizing : border-box ;
14
+
15
+ /* font configuration */
16
+ font-family : inherit ;
17
+ line-height : var (--size-normal );
18
+ font-size : var (--size-subtitle-first );
19
+ text-transform : uppercase ;
20
+ text-align : center ;
21
+ color : var (--color-floral-white );
22
+
23
+ /* box configuration */
24
+ background-color : var (--color-fiery-rose );
25
+ border-radius : var (--size-normal );
26
+ }
27
+ </style >
28
+
29
+ <label class ="label-collab" >{message }</label >
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import LogoCollab from ' ../components/LogoCollab.svelte'
3
3
import SearchCollab from ' ../components/SearchCollab.svelte'
4
+ import LabelCollab from ' ../components/LabelCollab.svelte'
4
5
</script >
5
6
6
7
<style >
24
25
25
26
<header class =" header-collab" >
26
27
<LogoCollab />
27
-
28
+ <LabelCollab message =" Aula 056" />
29
+ <LabelCollab />
28
30
<SearchCollab />
29
31
</header >
You can’t perform that action at this time.
0 commit comments