mirror of
https://github.com/tenrok/axios.git
synced 2026-06-23 20:40:40 +03:00
fix: sandbox ui updated (#7175)
This commit is contained in:
committed by
GitHub
parent
6dff629ee7
commit
7b197ef6ce
+14
-5
@@ -64,8 +64,22 @@
|
|||||||
|
|
||||||
pre {
|
pre {
|
||||||
min-height: 39px;
|
min-height: 39px;
|
||||||
|
white-space: pre-wrap; /* wrap long lines instead of stretching the panel */
|
||||||
|
word-wrap: break-word;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.box{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
grid-gap: 40px; /* Increased gap between input and response columns */
|
||||||
|
}
|
||||||
|
|
||||||
|
.response {
|
||||||
|
min-width: 0; /* prevents content overflow from pushing layout */
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.header{
|
.header{
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@@ -73,11 +87,6 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 2rem; /* Added space below the header */
|
margin-bottom: 2rem; /* Added space below the header */
|
||||||
}
|
}
|
||||||
.box{
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
grid-gap: 40px; /* Increased gap between input and response columns */
|
|
||||||
}
|
|
||||||
|
|
||||||
#theme-toggle {
|
#theme-toggle {
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
|
|||||||
Reference in New Issue
Block a user