add weather module
This commit is contained in:
30
src/components/Weather/style.module.css
Normal file
30
src/components/Weather/style.module.css
Normal file
@@ -0,0 +1,30 @@
|
||||
.weatherContainer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
padding: 3px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.currentTemperature {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.dailyTemperatures {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.min-temperature {
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.max-temperature {
|
||||
color: red;
|
||||
}
|
||||
Reference in New Issue
Block a user