2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00

fix: sandbox ui updated (#7175)

This commit is contained in:
Dhvani Maktuporia
2025-10-23 18:03:51 +05:30
committed by GitHub
parent 6dff629ee7
commit 7b197ef6ce
+14 -5
View File
@@ -64,8 +64,22 @@
pre {
min-height: 39px;
white-space: pre-wrap; /* wrap long lines instead of stretching the panel */
word-wrap: break-word;
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{
display: flex;
flex-direction: row;
@@ -73,11 +87,6 @@
align-items: center;
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 {
padding: 5px 10px;