Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX/#279] 홈 뷰 최종 QA 반영 #284

Merged
merged 2 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.component.image.TerningImage
import com.terning.core.designsystem.theme.Grey200
import com.terning.core.designsystem.theme.Grey150
import com.terning.core.designsystem.theme.Grey500
import com.terning.core.designsystem.theme.TerningTheme
import com.terning.core.designsystem.theme.White
Expand All @@ -31,9 +31,9 @@ fun HomeUpcomingEmptyFilter(
.fillMaxWidth()
.padding(horizontal = 24.dp)
.customShadow(
color = Grey200,
color = Grey150,
shadowRadius = 5.dp,
shadowWidth = 2.dp
shadowWidth = 1.dp
)
.background(
color = White,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.terning.core.designsystem.theme.Grey200
import com.terning.core.designsystem.theme.Grey400
import com.terning.core.designsystem.theme.Grey150
import com.terning.core.designsystem.theme.Grey500
import com.terning.core.designsystem.theme.TerningMain
import com.terning.core.designsystem.theme.TerningTheme
Expand All @@ -35,9 +34,9 @@ fun HomeUpcomingEmptyIntern(
.fillMaxWidth()
.padding(horizontal = 24.dp)
.customShadow(
color = Grey200,
color = Grey150,
shadowRadius = 5.dp,
shadowWidth = 2.dp
shadowWidth = 1.dp
)
.background(
color = White,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import coil.request.ImageRequest
import com.terning.core.designsystem.component.item.ScrapBox
import com.terning.core.designsystem.theme.Black
import com.terning.core.designsystem.theme.Grey150
import com.terning.core.designsystem.theme.Grey200
import com.terning.core.designsystem.theme.Grey500
import com.terning.core.designsystem.theme.TerningMain
import com.terning.core.designsystem.theme.TerningSub3
Expand Down Expand Up @@ -72,7 +71,7 @@ fun HomeUpcomingInternScreen(
modifier = Modifier
.width(246.dp)
.customShadow(
color = Grey200,
color = Grey150,
shadowRadius = 5.dp,
shadowWidth = 1.dp
),
Expand Down
Loading