Advertisement
xSky123

Sticky BottomNavigation Bar

Mar 11th, 2025
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. type: custom:mod-card
  2. card_mod:
  3. style: |
  4.  
  5. @media (min-width:180px) {
  6. ha-card {
  7. z-index:6;
  8. position: fixed;
  9. background: #eeedf5;
  10. bottom: 5px;
  11. left: 10px;
  12. padding: 0px;
  13. border-radius: 100px;
  14. width: calc(100% - 20px);
  15. }
  16. }
  17.  
  18. @media (min-width:801px) {
  19. ha-card {
  20. left: calc(20% + 43px);
  21. width: calc(60% - 30px);
  22. }
  23. }
  24. card:
  25. type: grid
  26. square: false
  27. columns: 3
  28. cards:
  29. - type: custom:button-card
  30. icon: mdi:home
  31. name: Overview
  32. show_label: false
  33. show_state: false
  34. show_name: true
  35. tap_action:
  36. action: navigate
  37. navigation_path: /mobile-light/overview
  38. styles:
  39. icon:
  40. - width: 24px
  41. - color: "#3b3b3b"
  42. name:
  43. - font-size: 13px
  44. img_cell:
  45. - width: 50px
  46. - height: 40px
  47. card:
  48. - background: none
  49. - padding: 0
  50. - type: custom:button-card
  51. icon: mdi:home-roof
  52. name: Room
  53. show_label: false
  54. show_state: false
  55. show_name: true
  56. tap_action:
  57. action: navigate
  58. navigation_path: /mobile-light/room
  59. styles:
  60. icon:
  61. - width: 24px
  62. - color: "#3b3b3b"
  63. name:
  64. - font-size: 13px
  65. img_cell:
  66. - width: 50px
  67. - height: 40px
  68. card:
  69. - background: none
  70. - padding: 0
  71. - type: custom:button-card
  72. icon: mdi:cctv
  73. name: Camera
  74. show_label: false
  75. show_state: false
  76. show_name: true
  77. tap_action:
  78. action: navigate
  79. navigation_path: /mobile-light/camera
  80. styles:
  81. icon:
  82. - width: 24px
  83. - color: "#3b3b3b"
  84. name:
  85. - font-size: 13px
  86. img_cell:
  87. - width: 50px
  88. - height: 40px
  89. card:
  90. - background: none
  91. - padding: 0
  92.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement