mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-17 00:50:05 +00:00
chore: css tidy up preventing redundant scroll bar
This commit is contained in:
@@ -1,43 +1,39 @@
|
|||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
|
||||||
Ubuntu, Cantarell, sans-serif;
|
Ubuntu, Cantarell, sans-serif;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: #333;
|
color: #333;
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
.app__error {
|
||||||
min-height: 100vh;
|
max-width: 800px;
|
||||||
}
|
margin: 50px auto;
|
||||||
|
padding: 30px;
|
||||||
.app__error {
|
background: white;
|
||||||
max-width: 800px;
|
border-radius: 8px;
|
||||||
margin: 50px auto;
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||||
padding: 30px;
|
|
||||||
background: white;
|
h1 {
|
||||||
border-radius: 8px;
|
color: #e74c3c;
|
||||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
h1 {
|
|
||||||
color: #e74c3c;
|
p {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
pre {
|
||||||
margin-bottom: 15px;
|
background: #2c3e50;
|
||||||
}
|
color: #ecf0f1;
|
||||||
|
padding: 15px;
|
||||||
pre {
|
border-radius: 4px;
|
||||||
background: #2c3e50;
|
overflow-x: auto;
|
||||||
color: #ecf0f1;
|
}
|
||||||
padding: 15px;
|
|
||||||
border-radius: 4px;
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user