Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 671 Bytes

Kanban styling - background customized.md

File metadata and controls

36 lines (27 loc) · 671 Bytes

Collection

Kanban styling - background customized


  • author:: dev-araujo
  • source::

cover::

/*
author: dev-araujo
*/

/* --- Kanban With Background Customized --- */

.theme-dark .view-content .kanban-plugin::after,
.theme-light .view-content .kanban-plugin::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;

  /* Change PATH-FOR-YOUR-BACKGROUND to your image path */
  background-image: url(PATH-FOR-YOUR-BACKGROUND) !important;
  background-repeat: no-repeat;
  background-size: cover;
}