-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e273dc9
commit 53cc510
Showing
4 changed files
with
80 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.time { | ||
text-align: center; | ||
padding: 32px; | ||
} | ||
|
||
.time h3 { | ||
font-size: 32px; | ||
border-bottom: 4px solid; | ||
display: inline-block; | ||
padding-bottom: 8px; | ||
} | ||
|
||
.time.colaboradores { | ||
display: flex; | ||
justify-content: space-around; | ||
margin-top: 32px; | ||
flex-wrap: wrap; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import './time.css' | ||
|
||
const Time = (props) => { | ||
|
||
const css = {backgroundColor:props.corSecundaria} | ||
|
||
return( | ||
<section className='time' style={css}> | ||
<h3 style={{borderColor: props.corPrimaria}}>{props.nome}</h3> | ||
</section> | ||
) | ||
} | ||
|
||
export default Time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters