More emojis and font size options

This commit is contained in:
Noah 2023-07-09 13:41:40 -07:00
parent 55b17f62c4
commit 6724792ba0
2 changed files with 11 additions and 1 deletions

View File

@ -153,6 +153,12 @@ body {
} }
/* User configurable font size increases */ /* User configurable font size increases */
#chatHistory .x-2 {
font-size: x-small;
}
#chatHistory .x-1 {
font-size: small;
}
#chatHistory .x1 { #chatHistory .x1 {
font-size: large; font-size: large;
} }

View File

@ -50,6 +50,8 @@ const app = Vue.createApp({
website: WebsiteURL, website: WebsiteURL,
permitNSFW: PermitNSFW, permitNSFW: PermitNSFW,
fontSizeClasses: [ fontSizeClasses: [
[ "x-2", "Very small chat room text" ],
[ "x-1", "50% smaller chat room text" ],
[ "", "Default size" ], [ "", "Default size" ],
[ "x1", "50% larger chat room text" ], [ "x1", "50% larger chat room text" ],
[ "x2", "2x larger chat room text" ], [ "x2", "2x larger chat room text" ],
@ -65,9 +67,11 @@ const app = Vue.createApp({
}, },
reactions: [ reactions: [
['❤️', '👍', '😂', '😉', '😢', '😡', '🥰'], ['❤️', '👍', '😂', '😉', '😢', '😡', '🥰'],
['😘', '👎', '☹️', '😭', '🤔', '🙄', '🤩'],
['👋', '🔥', '😈', '🍑', '🍆', '💦', '🍌'], ['👋', '🔥', '😈', '🍑', '🍆', '💦', '🍌'],
['😋', '⭐', '😇', '😴', '😱', '👀', '🎃'], ['😋', '⭐', '😇', '😴', '😱', '👀', '🎃'],
['😏', '🙈', '🙉', '🙊', '☀️', '🌈', '🎂'] ['🤮', '🥳', '🙏', '🤦', '💩', '🤯', '💯'],
['😏', '🙈', '🙉', '🙊', '☀️', '🌈', '🎂'],
] ]
}, },