33 lines
575 B
CSS
33 lines
575 B
CSS
|
|
.gallery-action-button {
|
|
position: absolute;
|
|
width: 28;
|
|
height: 28;
|
|
border-radius: var(--radius-sm);
|
|
border: 1px solid var(--accent);
|
|
background: var(--surface);
|
|
color: var(--fg);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
|
|
z-index: 1001;
|
|
transition: background 0.15s ease, border-color 0.15s ease;
|
|
}
|
|
|
|
.gallery-action-button:hover {
|
|
background: var(---surface-hover);
|
|
}
|
|
|
|
.action-button-svg {
|
|
stroke: var(--fg-secondary);
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.project-card {
|
|
height: 100%;
|
|
}
|
|
} |