Select Git revision
SharedCombinationPage.css
SharedCombinationPage.css 887 B
.shared-combination-page {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.shared-loading,
.shared-error {
text-align: center;
padding: 2rem;
font-size: 1.2rem;
}
.shared-error {
color: #ff4444;
}
.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;
}