Commit b11e9802 authored by Mike Greiling's avatar Mike Greiling

fix leaky css selector

parent 069f4c59
...@@ -43,7 +43,7 @@ export default { ...@@ -43,7 +43,7 @@ export default {
</script> </script>
<template> <template>
<div class="tree-content-holder"> <div class="repository-view tree-content-holder">
<repo-sidebar/><div class="panel-right" :class="{'edit-mode': editMode}"> <repo-sidebar/><div class="panel-right" :class="{'edit-mode': editMode}">
<repo-tabs/> <repo-tabs/>
<component :is="currentBlobView" class="blob-viewer-container"></component> <component :is="currentBlobView" class="blob-viewer-container"></component>
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
margin: 20px; margin: 20px;
} }
.tree-content-holder { .repository-view.tree-content-holder {
border: 1px solid $border-color; border: 1px solid $border-color;
border-radius: $border-radius-default; border-radius: $border-radius-default;
color: $almost-black; color: $almost-black;
...@@ -78,6 +78,7 @@ ...@@ -78,6 +78,7 @@
.blob-viewer-container { .blob-viewer-container {
overflow: hidden; overflow: hidden;
} }
.monaco-editor.vs { .monaco-editor.vs {
.cursor { .cursor {
background: $black; background: $black;
...@@ -374,6 +375,7 @@ ...@@ -374,6 +375,7 @@
.render-error { .render-error {
min-height: calc(100vh - 63px); min-height: calc(100vh - 63px);
p { p {
width: 100%; width: 100%;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment