diff --git a/CHANGELOG.md b/CHANGELOG.md index b6b7574..d1cd793 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,16 +10,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.5.3-beta3] - 2020-02-05 +### Changed +- Removed `border-bottom` from `:last-child`. + +### Fixed +- Fixed couple of typos in changelog. + ## [0.5.3-beta2] - 2020-02-05 ### Changed -- `allowDowngrade` is always `true`, so if you have opt enabled pre-releases and want to switch back to latest stable, just - disable `Allow pre-releases`, check updates, install and restart the app and you're back in the latest stable version. - Also if I have accidentally published buggy version of the app and want to relete the release (and you have already updated), - you would have in-app option to downgrade into latest stable version with ease. +- `allowDowngrade` is always `true`, so if you have enabled pre-releases and want to switch back to latest stable, just disable `Allow pre-releases`, check updates, install and restart the app and you're back in the latest stable version. Also if I have accidentally published a buggy version of the app and want to delete the release (and you have already updated), you would have in-app option to downgrade into latest stable version with ease. ### Fixed -- Fixed changelog, since Crash reporter was not finished yet (it's been too long since the last time I opened this project, - so I thought it was ready, because it was listed in Changelog). +- Fixed changelog, since Crash reporter was not finished yet (it's been too long since the last time I opened this project, so I thought it was ready, because it was listed in Changelog). ## [0.5.3-beta1] - 2020-02-05 ### Added diff --git a/package.json b/package.json index e0c2f7d..c1bfd13 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.5.3-beta2", + "version": "0.5.3-beta3", "name": "slothy", "description": "Changes your Slack status based on the SSID you're currently connected to.", "productName": "Slothy", diff --git a/src/assets/css/globalStyles.js b/src/assets/css/globalStyles.js index a7948b9..a685f30 100644 --- a/src/assets/css/globalStyles.js +++ b/src/assets/css/globalStyles.js @@ -83,4 +83,11 @@ export const GlobalStyles = createGlobalStyle` width: 100%; } } + + .ant-table-thead > tr:last-child, + .ant-table-tbody > tr:last-child { + & > td { + border-bottom: none; + } + } `; diff --git a/src/container/View/Configuration/Configuration.js b/src/container/View/Configuration/Configuration.js index e43a796..5e83a94 100644 --- a/src/container/View/Configuration/Configuration.js +++ b/src/container/View/Configuration/Configuration.js @@ -348,6 +348,10 @@ const ConfigurationSection = styled.div` justify-content: space-between; border-bottom: ${BORDER.thin} solid ${COLOR.borderLight}; `} + + &:last-child { + border-bottom: none; + } `; export default Configuration;