17 lines
322 B
CSS
17 lines
322 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 16px;
|
|
|
|
@media (min-width: 480px) {
|
|
padding: 0 24px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
padding: 0 40px;
|
|
}
|
|
}
|