Skip to content

Commit 616e4fa

Browse files
committed
Fix up styles
1 parent 197b556 commit 616e4fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/dashboard/src/AppNotifications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const UPDATED_PRIVACY_POLICY: Notification = {
5050
},
5151
message: (
5252
<span className="text-md">
53-
We've updated our Privacy Policy.It is available{" "}
53+
We've updated our Privacy Policy. It is available{" "}
5454
<a className="gp-link" href="https://www.gitpod.io/privacy" target="_blank" rel="noreferrer">
5555
here
5656
</a>

components/dashboard/src/components/Alert.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export default function Alert(props: AlertProps) {
111111
return (
112112
<div
113113
className={classNames(
114-
"flex relative whitespace-pre-wrap p-4",
114+
"flex relative items-center whitespace-pre-wrap p-4",
115115
info.txtCls,
116116
props.className,
117117
light ? "" : info.bgCls,
@@ -121,7 +121,7 @@ export default function Alert(props: AlertProps) {
121121
{showIcon && <span className={`mt-1 mr-4 h-4 w-4 ${info.iconColor}`}>{props.icon ?? info.icon}</span>}
122122
<span className="flex-1 text-left">{props.children}</span>
123123
{props.closable && (
124-
<span className={`mt-1 ml-4`}>
124+
<span className="ml-4">
125125
{/* Use an IconButton component once we make it */}
126126
<Button
127127
type="secondary"

0 commit comments

Comments
 (0)