Skip to content

Commit

Permalink
Tweak scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed Sep 5, 2024
1 parent 8c805bd commit 0022355
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ private fun DocumentationPanel(markdownBlocks: List<MarkdownBlock>) {
.fillMaxSize()
.background(Color.White)
.border(1.dp, JewelTheme.globalColors.borders.normal)
.padding(8.dp)
.padding(8.dp, 2.dp, 4.dp, 2.dp)
) {
Box(Modifier
.fillMaxSize()
Expand All @@ -315,7 +315,7 @@ private fun DocumentationPanel(markdownBlocks: List<MarkdownBlock>) {
"", // TODO: we should pass the raw Markdown
Modifier
.fillMaxSize()
.padding(end = 12.dp)
.padding(0.dp, 6.dp, 6.dp, 8.dp)
.focusable(false),
selectable = true,
onUrlClick = { url -> Desktop.getDesktop().browse(URI.create(url)) }
Expand All @@ -341,7 +341,7 @@ private fun LogsPanel(logs: AnnotatedString) {
.fillMaxSize()
.background(Color.White)
.border(1.dp, JewelTheme.globalColors.borders.normal)
.padding(8.dp)
.padding(8.dp, 2.dp, 4.dp, 2.dp)
) {
Box(Modifier
.fillMaxSize()
Expand All @@ -354,7 +354,7 @@ private fun LogsPanel(logs: AnnotatedString) {
fontSize = 12.sp,
modifier = Modifier
.fillMaxSize()
.padding(end = 12.dp)
.padding(0.dp, 6.dp, 6.dp, 8.dp)
.focusable(false)
)
}
Expand Down

0 comments on commit 0022355

Please sign in to comment.