-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nick Grato
committed
Nov 27, 2023
1 parent
9561320
commit 58c2c1b
Showing
3 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,8 +42,6 @@ | |
|
||
.warning { | ||
max-width: 1200px; | ||
width: 100%; | ||
margin-bottom: 24px; | ||
@include tablet-down { | ||
max-width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,17 +28,20 @@ const SidePanelLayout = ({ | |
|
||
return ( | ||
<> | ||
{/* <div className="flex-justify-center mt-20 px-20"> | ||
<div className={styles.warning}> | ||
<Warning | ||
title="Be Advised" | ||
message="We are aware of an outage currently impacting Starter and Personal plans in one of our service regions. If your assigned URL contains 'us1' you may be affected by this outage. Our team is actively working to resolve the issue, and we appreciate your patience. We apologize for any inconvenience this may cause. If you have any questions regarding this issue, please contact us," | ||
onClick={() => { | ||
window.open('mailto:[email protected]'); | ||
}} | ||
/> | ||
{hub.hasReachedMaxStorage() && ( | ||
<div className="flex-justify-center mt-20 px-20"> | ||
<div className={styles.warning}> | ||
<Warning | ||
title="Storage Maximum Reached" | ||
message="Be Advised - The content storage has exceted the alloted maximum. Stored data may be affected. Contact us if you have any questions." | ||
onClick={() => { | ||
window.open('mailto:[email protected]'); | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
</div> */} | ||
)} | ||
|
||
<section className={styles.layout_wrapper}> | ||
{children} | ||
{/* SIDE PANEL WIDGET */} | ||
|