HomarrH
Homarr2mo ago
5 replies
Teh_Fonz

Notebook Table Cell Borders

I am trying to remove the cell borders from a table in the Notebook widget. I have a CSS setup and set it to only apply to that specific widget - if I apply the CSS to the entire dashboard the css works and changes the color of cell borders on tables in other widgets but the table in the Notebook widget remains unchanged.

here is the custom CCS I am using:
.noborder table,
.noborder th,
.noborder td {
  border: none !important;
  outline: none !important; 
  box-shadow: none !important; 
}

.noborder table {
  border-collapse: collapse !important;
}

.noborder [class*="mantine-Card-root"],
.noborder [class*="mantine-Paper-root"] {
  border: none !important;
  box-shadow: none !important;
}


Any ideas would be appreciated!
Was this page helpful?