fix. utils 함수 변경, 클래스명 수정
This commit is contained in:
@@ -1,20 +1,31 @@
|
||||
/* Layout Utility Classes */
|
||||
@layer components {
|
||||
.section-wrap {
|
||||
/* 표준형 */
|
||||
.section-standard {
|
||||
@apply relative h-[640px] md:h-[1000px];
|
||||
}
|
||||
|
||||
.section-content {
|
||||
.content-standard {
|
||||
@apply relative h-full flex flex-col items-center justify-center text-center px-[20px] sm:px-[40px];
|
||||
}
|
||||
|
||||
/* 고정형 */
|
||||
.section-container.static {
|
||||
@apply relative pt-[32px] pb-[80px] px-[20px] sm:px-[40px] md:pt-[64px] md:pb-[200px] bg-[#F0F0F0];
|
||||
}
|
||||
.section-static {
|
||||
@apply mx-auto max-w-[684px] md:max-w-[944px] lg:max-w-[1300px];
|
||||
}
|
||||
.section-static + .section-static {
|
||||
@apply mt-[80px] md:mt-[100px];
|
||||
}
|
||||
|
||||
.border-line {
|
||||
@apply overflow-hidden relative rounded-[4px] md:rounded-lg
|
||||
after:content-[''] after:absolute after:top-0 after:left-0 after:w-full after:h-full
|
||||
after:border after:border-white/10 after:rounded-[4px] after:md:rounded-lg;
|
||||
}
|
||||
|
||||
/* Title Utility Classes */
|
||||
/* 표준형 Title Classes */
|
||||
.title-xlg {
|
||||
@apply line-clamp-4 text-[24px] font-[700] leading-[34px] drop-shadow-[0_2px_2px_rgba(0,0,0,0.6)] md:line-clamp-3 md:text-[50px] md:leading-[70px];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user