CalendarTemplateStyle.uss 666 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .days-container{
  2. display: flex;
  3. flex-direction: row;
  4. }
  5. .day-label {
  6. background-color: #FFFFFF;
  7. display: flex;
  8. flex-grow: 1;
  9. height: 20px;
  10. max-height: 20px;
  11. -unity-text-align: middle-center;
  12. -unity-font-style: bold;
  13. color: #000000;
  14. border-width: 1px;
  15. border-color: #2b2b2b;
  16. }
  17. .header-container{
  18. display: flex;
  19. flex-direction: row;
  20. align-content: center;
  21. justify-content: space-between;
  22. -unity-text-align: middle-center;
  23. min-height: 24px;
  24. margin: 10px;
  25. }
  26. .month-selector{
  27. display: flex;
  28. flex-direction: row;
  29. align-content: center;
  30. }
  31. .selected-date-label {
  32. width: 120px;
  33. }