Skip to content

Commit

Permalink
Consistent border-radius for buttons, Fixes #123
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Jun 30, 2024
1 parent f74fa11 commit 2d596e8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### 2.0.0rc38: 2024-06-30

* Remove outdated links from the README #121 (thanks @mackuba!)
* Consistent border-radius for buttons #123

### 2.0.0rc37: 2024-04-06

Expand Down
6 changes: 5 additions & 1 deletion layout-multiple-columns.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.0.0rc37 */
2.0.0rc38 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -1697,6 +1697,10 @@ body.embed .detailed-status__meta .detailed-status__link .icon-retweet,

/* Icon buttons */
.layout-multiple-columns .icon-button {
border-bottom-left-radius: 9999px;
border-bottom-right-radius: 9999px;
border-top-left-radius: 9999px;
border-top-right-radius: 9999px;
color: var(--color-dim);
}

Expand Down
6 changes: 5 additions & 1 deletion layout-single-column.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.0.0rc37 */
2.0.0rc38 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -1752,6 +1752,10 @@ body.embed .detailed-status__meta .detailed-status__link .fa-retweet,

/* Icon buttons */
.layout-single-column .icon-button {
border-bottom-left-radius: 9999px;
border-bottom-right-radius: 9999px;
border-top-left-radius: 9999px;
border-top-right-radius: 9999px;
color: var(--color-dim);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.0.0rc37",
"version": "2.0.0rc38",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 2d596e8

Please sign in to comment.