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) {
return (
<>
<div className={"has-border-around"}>
{this.renderBranchSelector()}
<FileTree
repository={repository}
@@ -99,7 +99,7 @@ class Sources extends React.Component<Props> {
path={path}
baseUrl={baseUrl}
/>
</>
</div>
);
} else {
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
.columns.is-multiline {