Skip to content

Commit

Permalink
v4.2.3-rc.2
Browse files Browse the repository at this point in the history
ericwang401 committed Mar 15, 2024
1 parent d526ef4 commit 903ae10
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,10 @@ This file is a running track of new features and fixes to each version of the pa

This project follows [Semantic Versioning](http://semver.org) guidelines.

## v4.2.3-rc.2

- Fixed a visual bug on the bandwidth usage card where the text wasn't centered.

## v4.2.3-rc.1

### Changes
Original file line number Diff line number Diff line change
@@ -182,7 +182,7 @@ const ServerDetailsBlock = () => {

<Card className='flex flex-col justify-between items-center col-span-10 lg:col-span-2'>
<h5 className='h5'>{tStrings('bandwidth_usage')}</h5>
<div className='grid place-items-center mt-5'>
<div className='relative grid place-items-center mt-5'>
<h4 className='absolute text-3xl font-semibold text-foreground'>
{Math.floor(bandwidth.percentage)}
</h4>
@@ -227,4 +227,4 @@ const ServerDetailsBlock = () => {
)
}

export default ServerDetailsBlock
export default ServerDetailsBlock

0 comments on commit 903ae10

Please sign in to comment.