Skip to content
Snippets Groups Projects
Select Git revision
  • 43f6c4a3f8448adeb24f59367f0e810350ec63b9
  • develop default
  • feat/dev-test
  • feat/router
  • feat/diet-merged
  • feat/Workout
  • feat/scrap
  • feat/루틴
  • feat/HabitTracker
  • feat;식단관리
  • feat/User-merged
  • feat/User
  • feat/diet
  • feat/back
  • feat/SignIn
  • feat/dbconf
  • master
  • revert-b2deab70
  • feat/certbot
  • hotfix/nginx
  • feature/ssl
21 results

List.jsx

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