Spaces:
Running
Running
File size: 347 Bytes
ce1ab17 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/*
* SPDX-FileCopyrightText: Hadad <[email protected]>
* SPDX-License-Identifier: Apache-2.0
*/
.logo {
font-weight: 800;
font-size: 1.125rem;
display: flex;
align-items: center;
gap: 0.5rem;
color: #eaeef8;
word-break: break-word;
transition: transform 0.2s ease;
height: 100%;
}
.logo:hover {
transform: scale(1.05);
} |