Skip to content

Instantly share code, notes, and snippets.

@mrcthms
Created July 3, 2020 11:28
Show Gist options
  • Save mrcthms/177a3d855f1be0115ec47436ecaacf4f to your computer and use it in GitHub Desktop.
Save mrcthms/177a3d855f1be0115ec47436ecaacf4f to your computer and use it in GitHub Desktop.
.wrapper {
height: 36px;
width: 100%;
position: relative;
}
.inner {
position: absolute;
right: 0;
top: 0;
}
import React from 'react'
import { Search } from '@invisionapp/helios'
function RightAlignedSearch(props) {
return (
<div className="wrapper">
<div className="inner">
<Search {...props} />
</div>
</div>
)
}
export default RightAlignedSearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment