Added alt-detection. Just need to set up pre-delete for userModel function to remove refrences to itself on alt accounts

This commit is contained in:
rainbow napkin 2024-12-24 10:57:55 -05:00
parent 6e785dc211
commit 980c84afff
14 changed files with 346 additions and 12 deletions

View file

@ -74,6 +74,13 @@ div.dynamic-container{
user-select: none;
}
.seperator{
display: block;
width: 100%;
height: 1px;
margin: 0.5em 0;
}
/* Navbar */
#navbar{
display: flex;
@ -141,4 +148,17 @@ p.navbar-item, input.navbar-item{
.popup-title{
margin-top: 0;
}
/* tooltip */
div.tooltip{
position: fixed;
pointer-events: all;
min-width: 1em;
min-height: 1em;
padding: 0.5em;
}
p.tooltip, h3.tooltip{
margin: 0 auto;
}