13 lines
183 B
CSS
13 lines
183 B
CSS
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
background: var(--accent);
|
|
color: black;
|
|
padding: 5px 10px;
|
|
|
|
span {
|
|
text-align: center;
|
|
}
|
|
}
|