Skip to content

Commit

Permalink
Tweak UI of debug dialog (#547)
Browse files Browse the repository at this point in the history
Make it a little bigger
Adjust heading text on the shareable URL view
Add border around log div
Add more style to the shareable URL
  • Loading branch information
mtlynch authored Mar 4, 2021
1 parent 0c39ee1 commit 9efcea3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions app/templates/custom-elements/debug-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,30 @@
#panel > div {
background-color: rgb(252, 236, 223);
border: 1px solid rgb(139, 97, 62);
max-width: 800px;
max-width: 1000px;
margin: 100px auto 0rem auto;
padding: 2rem;
}

#logs-success .logs {
font-family: consolas, monospace;
background-color: #f1f1f1;
border: 1px solid #302e28;
user-select: text;
text-align: left;
overflow-y: scroll;
max-height: 500px;
max-height: 600px;
white-space: pre-wrap;
}

#url-success .url-wrapper {
margin: 3rem 0;
}

#url-success .url {
user-select: text;
background: #bdbdbd;
padding: 1rem 2rem;
}

.error {
Expand Down Expand Up @@ -99,8 +106,8 @@ <h3>Retrieving shareable URL</h3>
<progress-spinner></progress-spinner>
</div>
<div id="url-success">
<h3>Shareable URL</h3>
<div>
<h3>Debug Logs</h3>
<div class="url-wrapper">
<a class="url"></a>
</div>
<button class="copy-btn btn-success" type="button">
Expand Down

0 comments on commit 9efcea3

Please sign in to comment.