Quick Cleanup

This commit is contained in:
rainbow napkin 2025-10-01 21:41:49 -04:00
parent b26dd1094c
commit 57db26a827
2 changed files with 1 additions and 4 deletions

View file

@ -20,11 +20,8 @@ const config = require('../../../config.json');
//Local Imports //Local Imports
const channelModel = require('../../schemas/channel/channelSchema'); const channelModel = require('../../schemas/channel/channelSchema');
const emoteModel = require('../../schemas/emoteSchema'); const emoteModel = require('../../schemas/emoteSchema');
const {userModel} = require('../../schemas/user/userSchema');
const userBanModel = require('../../schemas/user/userBanSchema');
const socketUtils = require('../../utils/socketUtils'); const socketUtils = require('../../utils/socketUtils');
const loggerUtils = require('../../utils/loggerUtils'); const loggerUtils = require('../../utils/loggerUtils');
const csrfUtils = require('../../utils/csrfUtils');
const presenceUtils = require('../../utils/presenceUtils'); const presenceUtils = require('../../utils/presenceUtils');
const activeChannel = require('./activeChannel'); const activeChannel = require('./activeChannel');
const chatHandler = require('./chatHandler'); const chatHandler = require('./chatHandler');

View file

@ -214,7 +214,7 @@ textarea{
text-shadow: var(--danger-glow0-alt1); text-shadow: var(--danger-glow0-alt1);
} }
.positive-button{ .positive-button:not([disabled]){
background-color: var(--focus0); background-color: var(--focus0);
color: white; color: white;
} }