Advertisement
Guest User

Untitled

a guest
Jul 31st, 2024
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. type: custom:mod-card
  2. card_mod:
  3. style: |
  4. @media (max-width: 480px) {
  5. ha-card {
  6. z-index: 1;
  7. position: fixed;
  8. bottom: 10px;
  9. left: 0;
  10. right: 0;
  11. width: 100%;
  12. background: none;
  13. border-radius: 10px;
  14. padding: 10px;
  15. /*margin: 0 10px; /* Optional: Adds a bit of space on the sides */
  16. box-sizing: border-box; /* Ensures padding is included in the width */
  17. }
  18. }
  19. card:
  20. type: grid
  21. square: false
  22. columns: 5
  23. cards:
  24. - type: custom:button-card
  25. icon: mdi:cart
  26. tap_action:
  27. action: navigate
  28. navigation_path: /todo
  29. styles:
  30. icon:
  31. - width: 24px
  32. - color: white
  33. img_cell:
  34. - width: 50px
  35. - height: 50px
  36. card:
  37. - background: black
  38. - padding: 0
  39. - type: custom:button-card
  40. icon: mdi:calendar
  41. tap_action:
  42. action: navigate
  43. navigation_path: /lovelace/calendrier
  44. styles:
  45. icon:
  46. - width: 24px
  47. - color: white
  48. img_cell:
  49. - width: 50px
  50. - height: 50px
  51. card:
  52. - background: black
  53. - padding: 0
  54. - type: custom:button-card
  55. icon: mdi:theater
  56. tap_action:
  57. action: navigate
  58. navigation_path: /lovelace/upcoming
  59. styles:
  60. icon:
  61. - width: 24px
  62. - color: white
  63. img_cell:
  64. - width: 50px
  65. - height: 50px
  66. card:
  67. - background: black
  68. - padding: 0
  69. - type: custom:button-card
  70. icon: mdi:car
  71. tap_action:
  72. action: navigate
  73. navigation_path: /lovelace/voiture
  74. styles:
  75. icon:
  76. - width: 24px
  77. - color: white
  78. img_cell:
  79. - width: 50px
  80. - height: 50px
  81. card:
  82. - background: black
  83. - padding: 0
  84. - type: custom:button-card
  85. icon: mdi:cog
  86. tap_action:
  87. action: navigate
  88. navigation_path: '#todo'
  89. styles:
  90. icon:
  91. - width: 24px
  92. - color: white
  93. img_cell:
  94. - width: 50px
  95. - height: 50px
  96. card:
  97. - background: black
  98. - padding: 0
  99.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement