Skip to content

Commit

Permalink
[FIX/#283] git pull from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Oct 7, 2024
2 parents c85cb94 + a09f74a commit d28a998
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
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

0 comments on commit d28a998

Please sign in to comment.