@stoker-platform/web-app 0.5.122 → 0.5.123

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.123
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: correct maintenance alert colours
8
+
3
9
  ## 0.5.122
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.122",
3
+ "version": "0.5.123",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
@@ -2,8 +2,8 @@ import { Card, CardContent, CardHeader, CardTitle } from "./components/ui/card"
2
2
 
3
3
  export default function Maintenance() {
4
4
  return (
5
- <div className="flex justify-center items-center h-[calc(100vh-128px)] p-5">
6
- <Card>
5
+ <div className="flex justify-center items-center h-screen p-5 bg-white">
6
+ <Card className="relative bottom-8 bg-white text-black border-gray-200">
7
7
  <CardHeader>
8
8
  <CardTitle>Maintenance Mode</CardTitle>
9
9
  </CardHeader>