Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Apr 26, 2023
1 parent 19f1062 commit 44a445e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/content-script/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async function mountComponent(siteConfig, userConfig) {
e.remove()
})
const container = document.createElement('div')
container.id='chatgptbox-container'
container.id = 'chatgptbox-container'
render(
<DecisionCard
session={initSession()}
Expand Down
6 changes: 4 additions & 2 deletions src/content-script/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,14 @@
margin-left: 60px;
}

.chatgptbox-container,#chatgptbox-container * {
.chatgptbox-container,
#chatgptbox-container * {
font-family: 'Cairo', sans-serif;
font-size: 14px;
}

.chatgptbox-container,#chatgptbox-container {
.chatgptbox-container,
#chatgptbox-container {
width: 100%;
flex-basis: 0;
flex-grow: 1;
Expand Down

0 comments on commit 44a445e

Please sign in to comment.