mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-08 18:59:27 +00:00
Add links for adding issues or contributions (#14)
Adds a section to the bottom of the page which houses links to ASU's issues page and the github repository for the firmware wizard. Signed-off-by: Sudhanshu Gautam <me@sudhanshug.com>
This commit is contained in:
parent
76da264e85
commit
a66fa21ca3
2 changed files with 26 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import Header from './components/header.js';
|
|||
import Home from './containers/home/home';
|
||||
import NotFound from './containers/not-found/not-found';
|
||||
import LinearProgress from '@material-ui/core/LinearProgress';
|
||||
import { Paper } from '@material-ui/core';
|
||||
|
||||
const theme = createMuiTheme({
|
||||
palette: {
|
||||
|
|
@ -34,6 +35,14 @@ function App() {
|
|||
<Route default component={NotFound}/>
|
||||
</Switch>
|
||||
</Router>
|
||||
<Paper elevation={4} className="report-problem-container">
|
||||
<span>
|
||||
If you come across any issue, feel free to report <a href="https://github.com/aparcar/attendedsysupgrade-server/issues">here</a>.
|
||||
</span>
|
||||
<span className="report-link">
|
||||
For contributions, go to <a href="https://github.com/sudhanshu16/openwrt-firmware-selector/">Github</a>
|
||||
</span>
|
||||
</Paper>
|
||||
</div>
|
||||
</Suspense>
|
||||
</ThemeProvider>
|
||||
|
|
|
|||
17
src/App.scss
17
src/App.scss
|
|
@ -27,6 +27,23 @@
|
|||
color: #61dafb;
|
||||
}
|
||||
|
||||
.report-problem-container {
|
||||
display: block;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
padding: 15px 10%;
|
||||
box-sizing: border-box;
|
||||
text-align: left;
|
||||
border-radius: 0
|
||||
}
|
||||
|
||||
.report-link {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@keyframes App-logo-spin {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue