ui: Add style to css for RunServerPage

This commit is contained in:
Ilija Lazoroski 2021-07-13 13:14:53 +02:00
parent 563f3e7491
commit a5151a65a3
2 changed files with 11 additions and 3 deletions

View File

@ -15,8 +15,8 @@ class RunServerPageComponent extends React.Component {
return (
<Col sm={{offset: 3, span: 9}} md={{offset: 3, span: 9}}
lg={{offset: 3, span: 9}} xl={{offset: 2, span: 7}}
className={'main'}>
<h1 className="page-title" style={{'margin-bottom': '0px'}}>Getting Started</h1>
className={'main getting-started-page'}>
<h1 className="page-title" >Getting Started</h1>
<div style={{'fontSize': '1.2em'}}>
<br/>
<HomepageCallToActions />
@ -32,7 +32,7 @@ export default RunServerPageComponent;
function HomepageCallToActions() {
return (
<section id="homepage-shortcuts" style={{'margin-bottom': '20px'}}>
<section id="homepage-shortcuts">
<div className="container">
<Row className="justify-content-center">
<div className="col-lg-4 col-sm-6">

View File

@ -1,3 +1,11 @@
.getting-started-page h1.page-title {
margin-bottom: 0px;
}
#homepage-shortcuts a.d-block {
height: 100%;
}
#homepage-shortcuts {
margin-bottom: 20px;
}