Skip to content

Commit

Permalink
feat: import App.css in App.js to apply styles
Browse files Browse the repository at this point in the history
  • Loading branch information
toliaqat committed Sep 20, 2024
1 parent 2ee7d4e commit 38a3d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { AppBar, Box, Toolbar, Typography, Button } from '@mui/material';
import Dashboard from './components/Dashboard';
import './App.css';

function App() {
return (
Expand All @@ -16,7 +17,7 @@ function App() {
href="https://github.com/Agoric/instagoric-private/actions/workflows/deploy-namespace.yaml"
target="_blank"
rel="noopener noreferrer"
sx={{ borderRadius: '12px', marginLeft: 'auto' }}
sx={{ borderRadius: '12px', marginLeft: 'auto', textTransform: 'none'}}
>
New Testnet
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TestnetRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const TestnetRow = ({ testnet }) => {
href="https://github.com/Agoric/instagoric-private/actions/workflows/deploy-namespace.yaml"
target="_blank"
rel="noopener noreferrer"
sx={{ borderRadius: '16px' }}
sx={{ borderRadius: '16px', textTransform: 'none' }}
>
Redeploy
</Button>
Expand Down

0 comments on commit 38a3d98

Please sign in to comment.