-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ticketing Beta branding and File Cleanup (#686)
* Add beta tag everywhere and add frontend auth check for issuing tickets * Delete legacy events code
- Loading branch information
1 parent
1c4d9ef
commit ff74f68
Showing
6 changed files
with
127 additions
and
1,033 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { BlueTag } from './Tags' | ||
|
||
export const BetaTag = ({ children }) => { | ||
return ( | ||
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }}> | ||
<div style={{ lineHeight: '1', fontSize: 'inherit' }}>{children}</div> | ||
<BlueTag | ||
className="tag is-rounded has-text-white" | ||
style={{ marginTop: '-30px' }} | ||
> | ||
Beta | ||
</BlueTag> | ||
</div> | ||
) | ||
} |
Oops, something went wrong.