style(month): drop the split style's divider (#53)

The rule between the compact grid and the day pane earns its place in the
Continuous header, where it closes a section off; here it only draws a line
between two halves the layout already separates.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-20 18:45:32 +02:00
parent b417900ddd
commit d23a1d5b6d
2 changed files with 0 additions and 3 deletions

View File

@@ -836,7 +836,6 @@ private fun SplitMonthContent(
// full of tappable rows, so it shouldn't also be a month gesture. // full of tappable rows, so it shouldn't also be a month gesture.
modifier = rememberMonthSwipeModifier(onSwipeNext, onSwipePrev), modifier = rememberMonthSwipeModifier(onSwipeNext, onSwipePrev),
) )
HorizontalDivider(color = MaterialTheme.colorScheme.outlineVariant)
SplitDayPane( SplitDayPane(
date = selected, date = selected,
today = state.today, today = state.today,

View File

@@ -7,7 +7,6 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.height
import androidx.compose.foundation.lazy.rememberLazyListState import androidx.compose.foundation.lazy.rememberLazyListState
import androidx.compose.material3.HorizontalDivider
import androidx.compose.material3.MaterialTheme import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember import androidx.compose.runtime.remember
@@ -138,7 +137,6 @@ internal fun MonthStylePreview(
showWeekNumbers = false, showWeekNumbers = false,
onSelectDay = {}, onSelectDay = {},
) )
HorizontalDivider(color = MaterialTheme.colorScheme.outlineVariant)
SplitDayPane( SplitDayPane(
date = today, date = today,
today = today, today = today,