page-recommend.component.scss 773 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .calendar {
  2. padding: 20px;
  3. .months {
  4. display: flex;
  5. flex-wrap: wrap;
  6. .month {
  7. flex: 1 1 20%;
  8. margin: 10px;
  9. .days {
  10. display: flex;
  11. flex-wrap: wrap;
  12. .day {
  13. width: 30px;
  14. height: 30px;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. margin: 2px;
  19. cursor: pointer;
  20. border: 1px solid #ccc;
  21. border-radius: 5px;
  22. &.starred {
  23. background-color: yellow;
  24. }
  25. }
  26. }
  27. }
  28. }
  29. .event-details {
  30. margin-top: 20px;
  31. border: 1px solid #ccc;
  32. padding: 10px;
  33. }
  34. }