-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add search related fixes * Hide button on smaller screens * Add list styles * Change font-size for paragraph
- Loading branch information
Showing
12 changed files
with
33 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.keyIcon { | ||
@apply text-dark-grey hidden md:flex items-center justify-center rounded shadow-tooltip w-24 h-24 font-light pt-2; | ||
@apply text-dark-grey hidden md:flex items-center justify-center rounded shadow-container-levitate w-24 h-24 font-light pt-2; | ||
min-width: 24px; | ||
} |
3 changes: 2 additions & 1 deletion
3
src/components/Header/TopMainNav/SearchBar/SearchBar.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.searchInput { | ||
@apply font-light bg-transparent ml-12 mr-4 outline-none w-full; | ||
@apply font-light bg-transparent pr-8 mr-4 outline-none w-full h-48; | ||
max-width: 400px; | ||
padding-left: 50px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
import styled from 'styled-components'; | ||
import React, { FC } from 'react'; | ||
import GenericHtmlBlock from '../Html/GenericHtmlBlock'; | ||
import { resetStyles } from './reset-styles'; | ||
|
||
const StyledOl = styled.ol` | ||
list-style: decimal; | ||
${resetStyles} | ||
`; | ||
const Ol: FC = (props) => <ol {...props} className="ui-text-p2 pl-16 pb-32 list-decimal -mt-16" />; | ||
|
||
const Ol = GenericHtmlBlock(StyledOl); | ||
|
||
export default Ol; | ||
export default GenericHtmlBlock(Ol); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
import styled from 'styled-components'; | ||
import React, { FC } from 'react'; | ||
import GenericHtmlBlock from '../Html/GenericHtmlBlock'; | ||
import { resetStyles } from './reset-styles'; | ||
|
||
// Unset these values inherited from AblyUI/reset.css | ||
const StyledUl = styled.ul` | ||
list-style: unset; | ||
${resetStyles} | ||
`; | ||
const Ul: FC = (props) => <ul {...props} className="ui-text-p2 pl-16 pb-32 list-disc -mt-16" />; | ||
|
||
const Ul = GenericHtmlBlock(StyledUl); | ||
|
||
export default Ul; | ||
export default GenericHtmlBlock(Ul); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters