mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 15:23:07 +08:00
11 lines
166 B
CSS
11 lines
166 B
CSS
.card {
|
|
max-width: 100%;
|
|
cursor: pointer;
|
|
transition: border-color 150ms ease;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.card:hover {
|
|
border-color: var(--mantine-color-blue-4);
|
|
}
|