fix(aio): api search input fix and style
This commit is contained in:

committed by
Pete Bacon Darwin

parent
bde9771991
commit
4c566dbfbb
@ -16,4 +16,9 @@ l-relative {
|
||||
|
||||
.is-visible {
|
||||
display: block!important;
|
||||
}
|
||||
|
||||
.l-flex-wrap {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
23
aio/src/styles/2-modules/_api-list.scss
Normal file
23
aio/src/styles/2-modules/_api-list.scss
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
aio-api-list {
|
||||
div.form-search i.material-icons {
|
||||
width: 20px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.form-search input {
|
||||
width: 182px;
|
||||
}
|
||||
}
|
||||
|
||||
aio-api-list > div {
|
||||
display: flex;
|
||||
margin: 32px auto;
|
||||
@media (max-width: 600px) {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
> div {
|
||||
margin: 8px;
|
||||
}
|
||||
}
|
30
aio/src/styles/2-modules/_banner.scss
Normal file
30
aio/src/styles/2-modules/_banner.scss
Normal file
@ -0,0 +1,30 @@
|
||||
/* Banner */
|
||||
|
||||
.banner {
|
||||
justify-content: center;
|
||||
background: $white;
|
||||
box-sizing: border-box;
|
||||
font-size: 18px;
|
||||
font-weight: 200;
|
||||
padding: 16px;
|
||||
min-height: 97px;
|
||||
|
||||
|
||||
@media (max-width: 480px) {
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
&.is-plain {
|
||||
background: $white;
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
|
||||
p, .text-body {
|
||||
color: $darkgray;
|
||||
font-size: 18px;
|
||||
line-height: 32px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
@ -15,4 +15,6 @@
|
||||
@import 'subsection';
|
||||
@import 'buttons';
|
||||
@import 'hero';
|
||||
@import 'announcement-bar';
|
||||
@import 'announcement-bar';
|
||||
@import 'banner';
|
||||
@import 'api-list';
|
Reference in New Issue
Block a user