Angular job portal app
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Button.module.scss 1.1 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. $steam: #DDDDDD;
  2. .CommonButton {
  3. display: inline-flex;
  4. align-items: center;
  5. justify-content: center;
  6. position: relative;
  7. span {
  8. font-weight: 600;
  9. color: white;
  10. }
  11. &:disabled {
  12. opacity: 0.5;
  13. pointer-events: none;
  14. background-color: $steam;
  15. border-color: $steam;
  16. font-weight: 600;
  17. }
  18. }
  19. .Small {
  20. height: 3rem;
  21. min-width: 3rem;
  22. font-size: 1.2rem;
  23. border-radius: 1.5rem;
  24. }
  25. .Medium {
  26. height: 4rem;
  27. min-width: 15rem;
  28. margin-top: 1.2rem;
  29. margin-bottom: 1.2rem;
  30. border-radius: 2.5rem;
  31. span {
  32. font-size: 1.2rem;
  33. font-weight: 600;
  34. }
  35. }
  36. .Large {
  37. height: 4rem;
  38. min-width: 35rem;
  39. font-size: 1.6rem;
  40. border-radius: 2.5rem;
  41. margin: 2rem 2rem;
  42. }
  43. .Primary {
  44. background-color: var(--primary-button-color);
  45. color: white;
  46. border-color: var(--primary-button-color);
  47. }
  48. .Secondary {
  49. background-color: transparent;
  50. border-color: var(--primary-button-color);
  51. color: var(--primary-button-color);
  52. }