ai / assets /css /logo.css
hadadrjt's picture
ai: Release demo playground source code.
ce1ab17
raw
history blame contribute delete
347 Bytes
/*
* 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);
}