20 lines
319 B
CSS
20 lines
319 B
CSS
|
.siteWideNotif {
|
||
|
width: 100%;
|
||
|
background: #4c82a3;
|
||
|
padding: 10px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.siteWideNotifInside {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
grid-gap: 10px;
|
||
|
color: #ffffff;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|