added MoreSection component to profile page
This commit is contained in:
@@ -7,18 +7,27 @@
|
||||
height: 28;
|
||||
border-radius: var(--radius-sm);
|
||||
border: 1px solid var(--accent);
|
||||
background: var(--accent-bg);
|
||||
color: #fff;
|
||||
background: var(--surface);
|
||||
color: var(--fg);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
backdrop-filter: blur(4px);
|
||||
|
||||
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%;
|
||||
|
||||
21
styles/more-section.css
Normal file
21
styles/more-section.css
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
.more-section-container {
|
||||
|
||||
}
|
||||
.drop-handle {
|
||||
width: 100%;
|
||||
height: 2em;
|
||||
display: flex;
|
||||
gap: 12;
|
||||
margin: 0 0 40px 0;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
border-radius: var(--radius-md);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
border: 1px solid var(--border);
|
||||
bottom: 0px;
|
||||
background-color: var(--bg-raised);
|
||||
}
|
||||
Reference in New Issue
Block a user