added border around content table

This commit is contained in:
Maren Süwer
2018-12-19 16:39:46 +01:00
parent 9a7c17edb5
commit f0fb4dbdd8
2 changed files with 285 additions and 277 deletions

View File

@@ -91,7 +91,7 @@ class Sources extends React.Component<Props> {
if (currentFileIsDirectory) { if (currentFileIsDirectory) {
return ( return (
<> <div className={"has-border-around"}>
{this.renderBranchSelector()} {this.renderBranchSelector()}
<FileTree <FileTree
repository={repository} repository={repository}
@@ -99,7 +99,7 @@ class Sources extends React.Component<Props> {
path={path} path={path}
baseUrl={baseUrl} baseUrl={baseUrl}
/> />
</> </div>
); );
} else { } else {
return ( return (

View File

@@ -87,6 +87,14 @@ $fa-font-path: "webfonts";
} }
} }
//border around options
.has-border-around{
border-top: 1px solid #eee;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee;
}
// multiline Columns // multiline Columns
.columns.is-multiline { .columns.is-multiline {