├── .gitattributes ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── bd-scss.config.js ├── dist ├── README.md └── illustrations │ ├── homeimage-default.avif │ └── homeimage-default.png ├── package.json ├── pnpm-lock.yaml └── src ├── addons └── _settingssidebar.scss ├── base.scss ├── core └── _root.scss ├── dev.scss ├── dist.scss └── theme ├── _dark.scss ├── _fonts.scss ├── _gradient.scss ├── _imports.scss ├── _index.scss ├── _light.scss ├── _vars.scss ├── app ├── _background.scss ├── _index.scss ├── _notice.scss ├── _scrollbar.scss ├── _status.scss ├── _text.scss ├── _titlebar.scss ├── _tooltips.scss └── _transparent.scss ├── bd ├── _addonlist.scss ├── _customcss.scss ├── _index.scss ├── _settings-sidebar.scss ├── _settings.scss └── _toasts.scss ├── chat ├── _browsechannels.scss ├── _call.scss ├── _channelheader.scss ├── _chatsidebar.scss ├── _container.scss ├── _forums.scss ├── _index.scss ├── _members.scss ├── _messages.scss ├── _searchpage.scss └── _textarea.scss ├── guilds ├── _container.scss ├── _folder.scss ├── _index.scss └── _servers.scss ├── inputs ├── _button.scss ├── _checkbox.scss ├── _dropdown.scss ├── _index.scss ├── _keybind.scss ├── _radiobutton.scss ├── _range.scss ├── _searchbar.scss ├── _select.scss └── _textbox.scss ├── modals ├── _addjoinserver.scss ├── _changelog.scss ├── _channeltopic.scss ├── _createchannel.scss ├── _customstatus.scss ├── _delete.scss ├── _downloadapp.scss ├── _editupload.scss ├── _generic.scss ├── _index.scss ├── _inviteprompt.scss ├── _keyboardshortcuts.scss ├── _nitro.scss ├── _paymentmethod.scss ├── _phoneverification.scss ├── _profilemodal.scss ├── _quickswitcher.scss ├── _ragingdemon.scss ├── _reactors.scss ├── _screenshare.scss ├── _serverboost.scss ├── _serverwelcome.scss ├── _termaccept.scss ├── _upload.scss └── _viewimage.scss ├── pages ├── _crash.scss ├── _index.scss ├── _login.scss ├── _nitrostore.scss ├── _peoples.scss └── _server-discovery.scss ├── plugins ├── _channeltabs.scss ├── _displayserversaschannels.scss ├── _index.scss ├── _pluginrepo.scss └── _spotifycontrols.scss ├── popouts ├── _activethreads.scss ├── _addgame.scss ├── _addrole.scss ├── _ateveryone.scss ├── _autocomplete.scss ├── _colorpicker.scss ├── _contextmenu.scss ├── _creategroup.scss ├── _emoji.scss ├── _emojipicker.scss ├── _format.scss ├── _generic.scss ├── _inbox.scss ├── _index.scss ├── _krisp.scss ├── _pinnedmessages.scss ├── _receivingcall.scss ├── _rtc.scss ├── _searchresults.scss ├── _statuspicker.scss ├── _threads.scss ├── _userpopout.scss └── _voiceplaying.scss ├── settings ├── _channelsettings.scss ├── _container.scss ├── _guildsettings.scss ├── _index.scss └── _usersettings.scss └── sidebar ├── _channels.scss ├── _container.scss ├── _dmchannels.scss ├── _guildheader.scss ├── _index.scss └── _panels.scss /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | dist/** -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/README.md -------------------------------------------------------------------------------- /bd-scss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/bd-scss.config.js -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/illustrations/homeimage-default.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/dist/illustrations/homeimage-default.avif -------------------------------------------------------------------------------- /dist/illustrations/homeimage-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/dist/illustrations/homeimage-default.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/addons/_settingssidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/addons/_settingssidebar.scss -------------------------------------------------------------------------------- /src/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/base.scss -------------------------------------------------------------------------------- /src/core/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/core/_root.scss -------------------------------------------------------------------------------- /src/dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/dev.scss -------------------------------------------------------------------------------- /src/dist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/dist.scss -------------------------------------------------------------------------------- /src/theme/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_dark.scss -------------------------------------------------------------------------------- /src/theme/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_fonts.scss -------------------------------------------------------------------------------- /src/theme/_gradient.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_gradient.scss -------------------------------------------------------------------------------- /src/theme/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_imports.scss -------------------------------------------------------------------------------- /src/theme/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_index.scss -------------------------------------------------------------------------------- /src/theme/_light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_light.scss -------------------------------------------------------------------------------- /src/theme/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/_vars.scss -------------------------------------------------------------------------------- /src/theme/app/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_background.scss -------------------------------------------------------------------------------- /src/theme/app/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_index.scss -------------------------------------------------------------------------------- /src/theme/app/_notice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_notice.scss -------------------------------------------------------------------------------- /src/theme/app/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_scrollbar.scss -------------------------------------------------------------------------------- /src/theme/app/_status.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_status.scss -------------------------------------------------------------------------------- /src/theme/app/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_text.scss -------------------------------------------------------------------------------- /src/theme/app/_titlebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/app/_titlebar.scss -------------------------------------------------------------------------------- /src/theme/app/_tooltips.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/app/_transparent.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/bd/_addonlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/bd/_addonlist.scss -------------------------------------------------------------------------------- /src/theme/bd/_customcss.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/bd/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/bd/_index.scss -------------------------------------------------------------------------------- /src/theme/bd/_settings-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/bd/_settings-sidebar.scss -------------------------------------------------------------------------------- /src/theme/bd/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/bd/_settings.scss -------------------------------------------------------------------------------- /src/theme/bd/_toasts.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/chat/_browsechannels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_browsechannels.scss -------------------------------------------------------------------------------- /src/theme/chat/_call.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_call.scss -------------------------------------------------------------------------------- /src/theme/chat/_channelheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_channelheader.scss -------------------------------------------------------------------------------- /src/theme/chat/_chatsidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_chatsidebar.scss -------------------------------------------------------------------------------- /src/theme/chat/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_container.scss -------------------------------------------------------------------------------- /src/theme/chat/_forums.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_forums.scss -------------------------------------------------------------------------------- /src/theme/chat/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_index.scss -------------------------------------------------------------------------------- /src/theme/chat/_members.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_members.scss -------------------------------------------------------------------------------- /src/theme/chat/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_messages.scss -------------------------------------------------------------------------------- /src/theme/chat/_searchpage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_searchpage.scss -------------------------------------------------------------------------------- /src/theme/chat/_textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/chat/_textarea.scss -------------------------------------------------------------------------------- /src/theme/guilds/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/guilds/_container.scss -------------------------------------------------------------------------------- /src/theme/guilds/_folder.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/guilds/_folder.scss -------------------------------------------------------------------------------- /src/theme/guilds/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/guilds/_index.scss -------------------------------------------------------------------------------- /src/theme/guilds/_servers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/guilds/_servers.scss -------------------------------------------------------------------------------- /src/theme/inputs/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_button.scss -------------------------------------------------------------------------------- /src/theme/inputs/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_checkbox.scss -------------------------------------------------------------------------------- /src/theme/inputs/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_dropdown.scss -------------------------------------------------------------------------------- /src/theme/inputs/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_index.scss -------------------------------------------------------------------------------- /src/theme/inputs/_keybind.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/inputs/_radiobutton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_radiobutton.scss -------------------------------------------------------------------------------- /src/theme/inputs/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_range.scss -------------------------------------------------------------------------------- /src/theme/inputs/_searchbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_searchbar.scss -------------------------------------------------------------------------------- /src/theme/inputs/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/inputs/_select.scss -------------------------------------------------------------------------------- /src/theme/inputs/_textbox.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_addjoinserver.scss: -------------------------------------------------------------------------------- 1 | .container_a4d79f { 2 | border-radius: 4px; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/modals/_changelog.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_channeltopic.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_createchannel.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_customstatus.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_delete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_delete.scss -------------------------------------------------------------------------------- /src/theme/modals/_downloadapp.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_editupload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_editupload.scss -------------------------------------------------------------------------------- /src/theme/modals/_generic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_generic.scss -------------------------------------------------------------------------------- /src/theme/modals/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_index.scss -------------------------------------------------------------------------------- /src/theme/modals/_inviteprompt.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_keyboardshortcuts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_keyboardshortcuts.scss -------------------------------------------------------------------------------- /src/theme/modals/_nitro.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_paymentmethod.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_phoneverification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_phoneverification.scss -------------------------------------------------------------------------------- /src/theme/modals/_profilemodal.scss: -------------------------------------------------------------------------------- 1 | .tabBar-2hXqzU { 2 | gap: 0; 3 | } -------------------------------------------------------------------------------- /src/theme/modals/_quickswitcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_quickswitcher.scss -------------------------------------------------------------------------------- /src/theme/modals/_ragingdemon.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_reactors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_reactors.scss -------------------------------------------------------------------------------- /src/theme/modals/_screenshare.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_screenshare.scss -------------------------------------------------------------------------------- /src/theme/modals/_serverboost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_serverboost.scss -------------------------------------------------------------------------------- /src/theme/modals/_serverwelcome.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_termaccept.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_upload.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/modals/_viewimage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/modals/_viewimage.scss -------------------------------------------------------------------------------- /src/theme/pages/_crash.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/pages/_index.scss -------------------------------------------------------------------------------- /src/theme/pages/_login.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/pages/_nitrostore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/pages/_nitrostore.scss -------------------------------------------------------------------------------- /src/theme/pages/_peoples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/pages/_peoples.scss -------------------------------------------------------------------------------- /src/theme/pages/_server-discovery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/pages/_server-discovery.scss -------------------------------------------------------------------------------- /src/theme/plugins/_channeltabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/plugins/_channeltabs.scss -------------------------------------------------------------------------------- /src/theme/plugins/_displayserversaschannels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/plugins/_displayserversaschannels.scss -------------------------------------------------------------------------------- /src/theme/plugins/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/plugins/_index.scss -------------------------------------------------------------------------------- /src/theme/plugins/_pluginrepo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/plugins/_pluginrepo.scss -------------------------------------------------------------------------------- /src/theme/plugins/_spotifycontrols.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/plugins/_spotifycontrols.scss -------------------------------------------------------------------------------- /src/theme/popouts/_activethreads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_activethreads.scss -------------------------------------------------------------------------------- /src/theme/popouts/_addgame.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_addrole.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_addrole.scss -------------------------------------------------------------------------------- /src/theme/popouts/_ateveryone.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_autocomplete.scss -------------------------------------------------------------------------------- /src/theme/popouts/_colorpicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_colorpicker.scss -------------------------------------------------------------------------------- /src/theme/popouts/_contextmenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_contextmenu.scss -------------------------------------------------------------------------------- /src/theme/popouts/_creategroup.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_emoji.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_emojipicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_emojipicker.scss -------------------------------------------------------------------------------- /src/theme/popouts/_format.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_generic.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_inbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_inbox.scss -------------------------------------------------------------------------------- /src/theme/popouts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_index.scss -------------------------------------------------------------------------------- /src/theme/popouts/_krisp.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_pinnedmessages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_pinnedmessages.scss -------------------------------------------------------------------------------- /src/theme/popouts/_receivingcall.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_rtc.scss: -------------------------------------------------------------------------------- 1 | .container__13b2a { 2 | border-radius: 8px; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/popouts/_searchresults.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_searchresults.scss -------------------------------------------------------------------------------- /src/theme/popouts/_statuspicker.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/popouts/_threads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_threads.scss -------------------------------------------------------------------------------- /src/theme/popouts/_userpopout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/popouts/_userpopout.scss -------------------------------------------------------------------------------- /src/theme/popouts/_voiceplaying.scss: -------------------------------------------------------------------------------- 1 | .streamPreview_adbea6 { 2 | border-radius: 8px; 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/settings/_channelsettings.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/settings/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/settings/_container.scss -------------------------------------------------------------------------------- /src/theme/settings/_guildsettings.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/theme/settings/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/settings/_index.scss -------------------------------------------------------------------------------- /src/theme/settings/_usersettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/settings/_usersettings.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_channels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_channels.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_container.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_dmchannels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_dmchannels.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_guildheader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_guildheader.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_index.scss -------------------------------------------------------------------------------- /src/theme/sidebar/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maenDisease/Outlook/HEAD/src/theme/sidebar/_panels.scss --------------------------------------------------------------------------------