-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
6 changed files
with
116 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,6 @@ | ||
|
||
.App { | ||
width: 80%; | ||
display: block; | ||
margin: 100px auto; | ||
max-width: 1000px; | ||
height: 100%; | ||
margin: auto; | ||
padding: 1em; | ||
} | ||
|
||
.ChatHistory { | ||
background-color: lightblue; | ||
padding: 10px; | ||
overflow-y: scroll; | ||
height: 500px; | ||
} | ||
|
||
.ChatHistoryRow { | ||
font-family: "Lucida Console", Monaco, monospace; | ||
font-size: 10pt; | ||
} | ||
|
||
.ChatHistoryRow.text { | ||
white-space: pre-wrap; | ||
} | ||
|
||
.echo { | ||
color: grey; | ||
font-style: italic; | ||
} | ||
|
||
.mainInput { | ||
width: 80%; | ||
margin-top: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.Editor { | ||
flex: 1; | ||
} | ||
|
||
.Editor .header { | ||
background: black; | ||
color: white; | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
.Editor .header h2 { | ||
font-size: 11pt; | ||
flex: 1; | ||
margin: 2px 10px; | ||
font-weight: normal; | ||
} | ||
|
||
.Editor .header button:last-child { | ||
margin-left: 1em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
.InteractionPane { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.ChatHistory { | ||
background-color: lightblue; | ||
padding: 10px; | ||
overflow-y: scroll; | ||
flex: 1; | ||
} | ||
|
||
.ChatHistoryRow, .input-bar, .mainInput, .input-bar button { | ||
font-family: "Lucida Console", Monaco, monospace; | ||
font-size: 10pt; | ||
} | ||
|
||
.ChatHistoryRow.text { | ||
white-space: pre-wrap; | ||
} | ||
|
||
.echo { | ||
color: grey; | ||
} | ||
.echo::before { | ||
content: "> "; | ||
} | ||
|
||
.input-bar { | ||
display: flex; | ||
flex-direction: row; | ||
background-color: lightblue; | ||
} | ||
.input-bar .mainInput { | ||
flex: 1; | ||
border: 0; | ||
outline: 0; | ||
background: transparent; | ||
} | ||
.input-bar button { | ||
flex: 0 0 auto; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters