Skip to content

Commit

Permalink
chore: bump version (#277)
Browse files Browse the repository at this point in the history
* style: set a gap in the flex container

* chore: change Banner copy

* style: allow article titles to `break-word`

* chore: bump version
  • Loading branch information
DiogoSoaress authored Feb 20, 2024
1 parent 19fddfc commit bf46eb4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "safe-homepage",
"homepage": "https://github.com/safe-global/safe-homepage",
"version": "1.3.14",
"version": "1.4.0",
"scripts": {
"build": "next build && next export",
"lint": "tsc && next lint",
Expand Down
1 change: 1 addition & 0 deletions src/components/Blog/FeaturedPost/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
gap: 8px;
}

.metaStart {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Blog/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const BlogLayout = ({ children, metaTags }: { children: ReactNode; metaTags: Met
<Box mt={{ xs: '24px', md: '120px' }}>
{children}
<BannerForm
title="Get insider updates"
title="Get the Alpha"
subtitle={
<>
Sign up to hear the latest from <i>Safe</i> in your inbox
Expand Down
5 changes: 5 additions & 0 deletions src/components/Blog/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
align-items: baseline;
}

.title {
overflow-wrap: break-word;
}

.title,
.excerpt {
margin-top: 16px;
Expand Down Expand Up @@ -110,6 +114,7 @@
@media (min-width: 900px) {
.title {
margin-top: 24px;
overflow-wrap: normal;
}

.avatarGroup {
Expand Down

0 comments on commit bf46eb4

Please sign in to comment.