Skip to content

Commit

Permalink
update some style and make the wrapper bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ECorreia45 committed Oct 31, 2024
1 parent 74f3630 commit e381215
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
14 changes: 7 additions & 7 deletions docs/documentation/capabilities/form-controls.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,13 @@ class TextField extends WebComponent {
static formAssociated = true

stylesheet = `
input {
border: 1px solid #444;
padding: 8px 10px;
border-radius: 3px;
min-width: 150px;
}
`
input {
border: 1px solid #444;
padding: 8px 10px;
border-radius: 3px;
min-width: 150px;
}
`

placeholder = ''
value = ''
Expand Down
6 changes: 3 additions & 3 deletions docs/stylesheets/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ body {
}

.wrapper {
padding-left: calc((100vw - 1200px) / 2);
padding-right: calc((100vw - 1200px) / 2);
padding-left: calc((100vw - 1400px) / 2);
padding-right: calc((100vw - 1400px) / 2);
}

@media screen and (max-width: 1200px) {
@media screen and (max-width: 1400px) {
.wrapper {
padding-left: 25px;
padding-right: 25px;
Expand Down
8 changes: 6 additions & 2 deletions docs/stylesheets/documentation.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
@import 'common.css';

body {
background: #000306;
}

#documentation {
display: flex;
max-height: 100vh;
Expand Down Expand Up @@ -27,7 +31,7 @@
right: 0;
top: 0;
width: 100vw;
background: #09141d;
background: #050c13;
height: 100%;
z-index: -1;
}
Expand Down Expand Up @@ -88,7 +92,7 @@

#documentation article {
flex: 1;
max-width: 825px;
max-width: 1025px;
padding: 50px 30px;
color: #ddd;
line-height: 170%;
Expand Down
2 changes: 1 addition & 1 deletion docs/stylesheets/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}

#why-markup ul li {
background: linear-gradient(320deg, #000b0e, #101618);
background: linear-gradient(320deg, #001114, #000000);
padding: 25px;
border-radius: 8px;
min-width: calc((100% / 3) - 30px);
Expand Down

0 comments on commit e381215

Please sign in to comment.