Skip to content

Commit

Permalink
footer font sizes for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
suryabulusu committed Jun 24, 2024
1 parent 8fc0120 commit a4508f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Questions/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default defineComponent({
"fill-current",
],
assessmentTextButtonTitleClass:
"text-sm bp-500:text-md lg:text-lg xl:text-xl font-bold",
"text-xs bp-500:text-sm lg:text-base xl:text-lg font-bold",
assessmentNavigationButtonClass: [
{
"bg-yellow-500 hover:bg-yellow-600 ring-yellow-500 px-6 bp-500:px-8 rounded-2xl":
Expand Down Expand Up @@ -216,11 +216,11 @@ export default defineComponent({
const markForReviewButtonTitleConfig = computed(() => ({
value: props.isMarkedForReview ? "Clear Review" : "Mark For Review",
class: [state.assessmentTextButtonTitleClass, "text-violet-500"],
class: ["text-xxs bp-500:text-sm lg:text-base xl:text-lg font-bold", "text-violet-500"],
} as IconButtonTitleConfig));
const saveAndNextButtonTitleConfig = ref({
value: "Save & Next",
value: "Save >",
class: [state.assessmentTextButtonTitleClass, "text-emerald-500"],
} as IconButtonTitleConfig);
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ module.exports = {
borderWidth: {
1: "1px",
},
fontSize: {
xxs: "0.65rem",
},
},
screens: {
"bp-320": "320px",
Expand Down

0 comments on commit a4508f7

Please sign in to comment.