mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-10-14 08:00:11 +00:00

feat: Refactor Session class to use LocalStorageService for session management feat: Enhance BasicButton component with configuration options and event handling style: Update SASS variables to CSS custom properties for better theming support style: Modify app.sass to include Bootstrap with legacy import chore: Update settings.ts to handle session initialization and error notifications fix: Improve buttonType definition for better readability chore: Refactor parse.ts for cleaner file handling and keyword replacement chore: Enhance syncConfig.ts with TypeScript interfaces and async file operations chore: Update v2.ts to modify manifest.json for compatibility with manifest version 2 chore: Revise tsconfig.json for stricter type checking and improved module resolution chore: Refactor vite.config.ts for better build configuration and asset management
51 lines
803 B
Sass
51 lines
803 B
Sass
@import 'root'
|
|
@import 'mixin'
|
|
@import 'content'
|
|
|
|
// Bootstrap with legacy import (suppressed warnings via Vite config)
|
|
@import "../../node_modules/bootstrap/scss/bootstrap"
|
|
|
|
body
|
|
height: 30rem
|
|
width: 30rem
|
|
background-color: $background-color
|
|
text-align: center
|
|
margin: auto
|
|
padding: 1rem
|
|
color: $main-font-color
|
|
|
|
p
|
|
font-size: 1rem
|
|
font-weight: bold
|
|
margin: auto
|
|
padding: auto
|
|
color: $main-font-color
|
|
text-align: center
|
|
font-family: 'Roboto', sans-serif
|
|
|
|
h1, h2
|
|
@include noselect
|
|
|
|
form
|
|
@include formBasic
|
|
|
|
.logo
|
|
width: 5rem
|
|
height: auto
|
|
padding-top: 2rem
|
|
@include noselect
|
|
|
|
svg
|
|
@include noselect
|
|
|
|
table
|
|
color: $main-font-color !important
|
|
|
|
th
|
|
@include noselect
|
|
|
|
a
|
|
color: $main-font-color
|
|
|
|
&:hover
|
|
color: $background-color-content
|