Skip to content
Snippets Groups Projects
Select Git revision
  • 3d05b57b20f81735a498ed61aa0b8a6bff5229d3
  • master default protected
2 results

App.js

Blame
  • 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;
    }