Fixing The Overflow Issue

Changed default attribute in html from overflow being shown to hidden.
This commit is contained in:
a-box31
2022-12-23 05:06:22 -05:00
parent ade281602f
commit 6de8db0780
3 changed files with 34 additions and 17 deletions
+2 -2
View File
@@ -21,7 +21,6 @@ const mongouri = process.env.mongouri;
const client = new MongoClient(mongouri, { useNewUrlParser: true, useUnifiedTopology: true, serverApi: ServerApiVersion.v1 });
const connection = client.connect();
const bot = new Client({
intents: [
Intents.FLAGS.GUILDS,
@@ -628,4 +627,5 @@ app.get("*",(req,res) => {
res.sendFile("404.html", {root: 'HTML'});
})
app.listen(port, () => console.log(`App listening on port ${port}`));
app.listen(port, () => console.log(`App listening on port ${port}`));