├── .devcontainer └── devcontainer.json ├── .eslintrc.yml ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── action.ci.yml │ ├── action.gitlab-push.yml │ ├── action.merge.yml │ ├── code-deploy.yml │ ├── code-install.yml │ └── code-lint.yml ├── .gitignore ├── .gitlab └── .gitlab-ci.yml ├── .prettierignore ├── .prettierrc.yml ├── .stylelintrc.yml ├── LICENSE.md ├── README.md ├── friends.custom.css ├── friends.custom.dev.css ├── package.json ├── src ├── assets │ ├── attachIcon.svg │ ├── emojiIcon.svg │ ├── half-moon.svg │ └── offline.svg ├── common │ ├── _currentUser.scss │ ├── _dialog-window.scss │ ├── _friendsFooter.scss │ ├── _functions.scss │ ├── _variables-css.scss │ ├── _variables-sass.scss │ ├── _window-control.scss │ ├── avatar │ │ └── avatarShape.scss │ ├── button │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _toggle.scss │ │ └── _togglePseudo.scss │ ├── rangeSlider │ │ └── _rangeSlider.scss │ └── shadowEffects │ │ ├── _improvedShadow.scss │ │ └── _noShadow.scss ├── friends-client │ ├── base │ │ ├── _miscAvatars.scss │ │ ├── _scrollbar.scss │ │ ├── avatars │ │ │ └── _avatars.scss │ │ ├── chat │ │ │ ├── _chatTabs.scss │ │ │ ├── _chatWindow.scss │ │ │ ├── _discordStyleChatInput.scss │ │ │ ├── _dockedChat.scss │ │ │ ├── _emoticonPicker.scss │ │ │ ├── _messages.scss │ │ │ └── _voiceControls.scss │ │ ├── dialog │ │ │ └── _createChatDialog.scss │ │ └── friends │ │ │ ├── _contextMenu.scss │ │ │ ├── _currentUser.scss │ │ │ ├── _friendGroup.scss │ │ │ ├── _friendsSearchBar.scss │ │ │ ├── _groupChatSection.scss │ │ │ ├── _miniProfile.scss │ │ │ ├── _miscFriendlist.scss │ │ │ ├── _notifications.scss │ │ │ ├── _offline-friends.scss │ │ │ ├── _quickAccess.scss │ │ │ └── _statusColours.scss │ ├── customisable │ │ ├── avatarFrame │ │ │ └── disable.scss │ │ ├── avatarStatus │ │ │ ├── discordStatus.scss │ │ │ └── outlineStatus.scss │ │ ├── avatarStyle │ │ │ ├── roundAvatar.scss │ │ │ ├── squareAvatar.scss │ │ │ └── squircleAvatar.scss │ │ ├── colourSet │ │ │ ├── blackMode.scss │ │ │ ├── darkMode.scss │ │ │ ├── discordColours.scss │ │ │ ├── lightMode.scss │ │ │ └── steamColours.scss │ │ ├── miniProfile │ │ │ ├── miniProfileBlur.scss │ │ │ └── miniProfileSolid.scss │ │ ├── shadowEffects │ │ │ ├── improvedShadow.scss │ │ │ └── noShadow.scss │ │ └── statusGlow │ │ │ ├── noGlow.scss │ │ │ └── themedGlow.scss │ └── friendsChat.dev.scss └── steam-client │ ├── base │ ├── _context-menus.scss │ ├── _title-bar-controls.scss │ ├── _top-bar.scss │ └── _window-control.scss │ ├── customisable │ ├── bottom-bar │ │ └── add-to-top.scss │ ├── layout-tweaks │ │ └── thinner-title-bar.scss │ └── title-bar-control │ │ └── align-with-nav.scss │ └── steam-client.dev.scss └── webpack.config.js /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/action.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/action.ci.yml -------------------------------------------------------------------------------- /.github/workflows/action.gitlab-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/action.gitlab-push.yml -------------------------------------------------------------------------------- /.github/workflows/action.merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/action.merge.yml -------------------------------------------------------------------------------- /.github/workflows/code-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/code-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/code-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/code-install.yml -------------------------------------------------------------------------------- /.github/workflows/code-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.github/workflows/code-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.gitlab/.gitlab-ci.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | friends.custom.* 2 | .*ignore 3 | .vscode 4 | dist 5 | assets 6 | LICENSE.md 7 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.stylelintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/.stylelintrc.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/README.md -------------------------------------------------------------------------------- /friends.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/friends.custom.css -------------------------------------------------------------------------------- /friends.custom.dev.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/friends.custom.dev.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/attachIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/assets/attachIcon.svg -------------------------------------------------------------------------------- /src/assets/emojiIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/assets/emojiIcon.svg -------------------------------------------------------------------------------- /src/assets/half-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/assets/half-moon.svg -------------------------------------------------------------------------------- /src/assets/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/assets/offline.svg -------------------------------------------------------------------------------- /src/common/_currentUser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_currentUser.scss -------------------------------------------------------------------------------- /src/common/_dialog-window.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_dialog-window.scss -------------------------------------------------------------------------------- /src/common/_friendsFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_friendsFooter.scss -------------------------------------------------------------------------------- /src/common/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_functions.scss -------------------------------------------------------------------------------- /src/common/_variables-css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_variables-css.scss -------------------------------------------------------------------------------- /src/common/_variables-sass.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_variables-sass.scss -------------------------------------------------------------------------------- /src/common/_window-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/_window-control.scss -------------------------------------------------------------------------------- /src/common/avatar/avatarShape.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/avatar/avatarShape.scss -------------------------------------------------------------------------------- /src/common/button/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/button/_button.scss -------------------------------------------------------------------------------- /src/common/button/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/button/_checkbox.scss -------------------------------------------------------------------------------- /src/common/button/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/button/_toggle.scss -------------------------------------------------------------------------------- /src/common/button/_togglePseudo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/button/_togglePseudo.scss -------------------------------------------------------------------------------- /src/common/rangeSlider/_rangeSlider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/rangeSlider/_rangeSlider.scss -------------------------------------------------------------------------------- /src/common/shadowEffects/_improvedShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/shadowEffects/_improvedShadow.scss -------------------------------------------------------------------------------- /src/common/shadowEffects/_noShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/common/shadowEffects/_noShadow.scss -------------------------------------------------------------------------------- /src/friends-client/base/_miscAvatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/_miscAvatars.scss -------------------------------------------------------------------------------- /src/friends-client/base/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/_scrollbar.scss -------------------------------------------------------------------------------- /src/friends-client/base/avatars/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/avatars/_avatars.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_chatTabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_chatTabs.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_chatWindow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_chatWindow.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_discordStyleChatInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_discordStyleChatInput.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_dockedChat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_dockedChat.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_emoticonPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_emoticonPicker.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_messages.scss -------------------------------------------------------------------------------- /src/friends-client/base/chat/_voiceControls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/chat/_voiceControls.scss -------------------------------------------------------------------------------- /src/friends-client/base/dialog/_createChatDialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/dialog/_createChatDialog.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_contextMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_contextMenu.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_currentUser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_currentUser.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_friendGroup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_friendGroup.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_friendsSearchBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_friendsSearchBar.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_groupChatSection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_groupChatSection.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_miniProfile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_miniProfile.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_miscFriendlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_miscFriendlist.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_notifications.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_offline-friends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_offline-friends.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_quickAccess.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_quickAccess.scss -------------------------------------------------------------------------------- /src/friends-client/base/friends/_statusColours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/base/friends/_statusColours.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarFrame/disable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarFrame/disable.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarStatus/discordStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarStatus/discordStatus.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarStatus/outlineStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarStatus/outlineStatus.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarStyle/roundAvatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarStyle/roundAvatar.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarStyle/squareAvatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarStyle/squareAvatar.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/avatarStyle/squircleAvatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/avatarStyle/squircleAvatar.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/colourSet/blackMode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/colourSet/blackMode.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/colourSet/darkMode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/colourSet/darkMode.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/colourSet/discordColours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/colourSet/discordColours.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/colourSet/lightMode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/colourSet/lightMode.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/colourSet/steamColours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/colourSet/steamColours.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/miniProfile/miniProfileBlur.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/miniProfile/miniProfileBlur.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/miniProfile/miniProfileSolid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/miniProfile/miniProfileSolid.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/shadowEffects/improvedShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/shadowEffects/improvedShadow.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/shadowEffects/noShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/shadowEffects/noShadow.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/statusGlow/noGlow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/statusGlow/noGlow.scss -------------------------------------------------------------------------------- /src/friends-client/customisable/statusGlow/themedGlow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/customisable/statusGlow/themedGlow.scss -------------------------------------------------------------------------------- /src/friends-client/friendsChat.dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/friends-client/friendsChat.dev.scss -------------------------------------------------------------------------------- /src/steam-client/base/_context-menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/base/_context-menus.scss -------------------------------------------------------------------------------- /src/steam-client/base/_title-bar-controls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/base/_title-bar-controls.scss -------------------------------------------------------------------------------- /src/steam-client/base/_top-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/base/_top-bar.scss -------------------------------------------------------------------------------- /src/steam-client/base/_window-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/base/_window-control.scss -------------------------------------------------------------------------------- /src/steam-client/customisable/bottom-bar/add-to-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/customisable/bottom-bar/add-to-top.scss -------------------------------------------------------------------------------- /src/steam-client/customisable/layout-tweaks/thinner-title-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/customisable/layout-tweaks/thinner-title-bar.scss -------------------------------------------------------------------------------- /src/steam-client/customisable/title-bar-control/align-with-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/customisable/title-bar-control/align-with-nav.scss -------------------------------------------------------------------------------- /src/steam-client/steam-client.dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/src/steam-client/steam-client.dev.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaserFlash/steam-chat-skin/HEAD/webpack.config.js --------------------------------------------------------------------------------