Skip to content

Commit

Permalink
fix more issues ui
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed Oct 3, 2024
1 parent 862de60 commit 0181d8a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const ContentCardWrapper = styled.div`
border: 1px solid ${props => props.theme.whiteZeroThreeToBlackZeroOne};
justify-content: space-between;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
:hover {
&:hover {
transition: background 150ms ease-out 0s, border 150ms ease-out 0s,
transform 150ms ease-out 0s;
transform: translate3d(0px, -1px, 0px);
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Blog/Blog-grid/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ const BlogGrid = ({
<SearchBox searchQuery={searchQuery} searchData={searchData} paginate={paginate} currentPage={currentPage} focusSearch={true}/>
</div>
<div className="blog-grid-wrapper">
<Row>
<Row style={{
flexWrap: "wrap"
}}>
{queryResults.length < 1 && (
<Col $xs={12} $sm={6}>
No blog post that matches the title "{searchQuery}" found.
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Blog/Blog-list/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ const BlogList = ({
/>
<div className="blog-page-wrapper">
<Container>
<Row>
<Row style={{
flexWrap: "wrap"
}}>
<Col $xs={12} $lg={8}>
{!pageContext.tag && !pageContext.category ? (
<div className="tooltip-search">
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Learn/LearnPage-Sections/learn.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ const LearnSection = () => {
<div>
<h1 className="learn-heading"><span>Meshery - </span> Learn how to manage Kubernetes</h1>
<Container>
<Row $Hcenter className="learn-buttons-section labs">
<Row style={{
flexWrap: "wrap"
}} $Hcenter className="learn-buttons-section labs">
<Col $xs={12} $lg={6}>
<Link to="/learn/service-mesh-labs" state={{ selectedIndex: 0 }}>
<Button $secondary title="Getting started with any service mesh"/>
Expand Down
8 changes: 6 additions & 2 deletions src/sections/Learn/Workshop-grid/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ const WorkshopsPage = () => {
<div className="workshop-page-wrapper">
<Container>
<div className="workshop-grid-wrapper">
<Row>
<Row style={{
flexWrap: "wrap"
}}>
{data.allMdx.nodes.map(({ id, frontmatter, fields, body }) => (
<Col {...content && ID === id ? { $xs: 12, $sm: 12, $lg: 12 } : { $xs: 12, $sm: 6, $lg: 4 } } key={id} className="workshop-grid-col">
<div className="workshop-grid-card">
Expand Down Expand Up @@ -115,7 +117,9 @@ const WorkshopsPage = () => {
</Col>
))}
</Row>
<Row className="rqst-workshop">
<Row style={{
flexDirection: "column"
}} className="rqst-workshop">
<img src={WorkshopImage} alt="WorkshopImage" className="bottom-image" />
<Button $primary $url="mailto:[email protected]" $external={true}>
Request A Workshop
Expand Down

0 comments on commit 0181d8a

Please sign in to comment.