Finished up cleaning css.

This commit is contained in:
rainbow napkin 2024-12-08 05:53:00 -05:00
parent b13e2bde24
commit ff69762a1f
15 changed files with 87 additions and 98 deletions

View file

@ -130,7 +130,7 @@ class rankList{
clearTable(){
//get all non-title table rows
const rows = this.table.querySelectorAll("tr.admin-list-entry");
const rows = this.table.querySelectorAll("tr.gen-row");
//for each row
rows.forEach((row) => {
@ -161,7 +161,7 @@ class banList{
}
clearList(){
const oldRows = this.table.querySelectorAll('tr.admin-list-entry');
const oldRows = this.table.querySelectorAll('tr.gen-row');
oldRows.forEach((row) => {
row.remove();
});