@akinon/next 1.86.0-rc.1 → 1.86.0-rc.2

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
  # @akinon/next
2
2
 
3
+ ## 1.86.0-rc.2
4
+
5
+ ### Minor Changes
6
+
7
+ - c3f8d4af: ZERO-3274: Adjust button styles
8
+
3
9
  ## 1.86.0-rc.1
4
10
 
5
11
  ## 1.86.0-rc.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@akinon/next",
3
3
  "description": "Core package for Project Zero Next",
4
- "version": "1.86.0-rc.1",
4
+ "version": "1.86.0-rc.2",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "bin": {
@@ -31,7 +31,7 @@
31
31
  "set-cookie-parser": "2.6.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@akinon/eslint-plugin-projectzero": "1.86.0-rc.1",
34
+ "@akinon/eslint-plugin-projectzero": "1.86.0-rc.2",
35
35
  "@types/react-redux": "7.1.30",
36
36
  "@types/set-cookie-parser": "2.4.7",
37
37
  "@typescript-eslint/eslint-plugin": "6.7.4",
@@ -40,8 +40,8 @@ function ClientErrorUI({
40
40
  const errorMessage = error?.message || 'Unknown error';
41
41
 
42
42
  return (
43
- <section className="text-center px-6 my-14 md:px-0 md:m-14">
44
- <div className="text-4xl font-bold md:text-6xl text-red-500">Oops!</div>
43
+ <section className="text-center px-6 py-6 my-14 md:px-0 md:m-14">
44
+ <div className="text-4xl font-bold md:text-6xl text-red-500">500</div>
45
45
  <h1 className="text-lg md:text-xl mt-4">
46
46
  {t('common.client_error.title')}
47
47
  </h1>
@@ -59,7 +59,7 @@ function ClientErrorUI({
59
59
  <Link href={ROUTES.HOME} className="text-lg underline">
60
60
  {t('common.client_error.link_text')}
61
61
  </Link>
62
- <Button onClick={reset} className="text-lg w-28">
62
+ <Button onClick={reset} className="text-lg">
63
63
  {t('common.try_again')}
64
64
  </Button>
65
65
  </div>
@@ -84,7 +84,7 @@ function ServerErrorUI() {
84
84
  <Link href={ROUTES.HOME} className="text-lg underline">
85
85
  {t('common.page_500.link_text')}
86
86
  </Link>
87
- <Button onClick={reloadPage} className="text-lg w-28">
87
+ <Button onClick={reloadPage} className="text-lg">
88
88
  {t('common.try_again')}
89
89
  </Button>
90
90
  </div>