Select Git revision
-
Sumin Shin authoredSumin Shin authored
CombinationBox.css 774 B
.combination-box {
margin-bottom: 2rem;
}
.combination-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.share-button {
padding: 0.5rem 1rem;
background-color: var(--primary-color);
color: white;
border: 1px solid var(--primary-color);
border-radius: 8px;
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
}
.share-button:hover {
background-color: var(--primary-color);
box-shadow: 0 0 0 3px var(--primary-light);
transform: translateY(-1px);
}
.share-button:disabled {
background-color: var(--primary-light);
border-color: var(--primary-light);
cursor: not-allowed;
transform: none;
box-shadow: none;
}
.title {
margin: 0;
font-size: 1.5rem;
color: #333;
}