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

Home page break issue fix, landing page css fix #1487

Merged
merged 1 commit into from
Oct 9, 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
@@ -1,6 +1,6 @@
{
"name": "@egovernments/digit-ui-css",
"version": "1.8.2-beta.39",
"version": "1.8.2-beta.40",
"license": "MIT",
"main": "dist/index.css",
"author": "Jagankumar <[email protected]>",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

.sandbox-url-footer {
align-self: flex-start;
margin-bottom: 3rem;
margin-bottom: 1rem;
font-size: 14px;
margin-top: -0.5rem;
color: #505a5f;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React, { Fragment, useState, useEffect } from "react";
import { LandingPageCard, Loader } from "@egovernments/digit-ui-components";
import { Button, LandingPageCard, LandingPageWrapper, Loader } from "@egovernments/digit-ui-components";
import { useTranslation } from "react-i18next";
import { useHistory } from "react-router-dom";
import { EmployeeModuleCard } from "@egovernments/digit-ui-react-components";

const DIGIT_UI_CONTEXTS = ["digit-ui", "works-ui", "workbench-ui", "health-ui", "sanitation-ui", "core-ui", "mgramseva-web", "sandbox-ui"];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ViewUrl = () => {
<Card className="card-sandbox">
<Header showTenant={false} />
<div className="sandbox-success-signup">
<SVG.TickMark fill={"#fff"} height={40} width={60} />
<SVG.TickMark fill={"#fff"} height={30} width={70} />
</div>
<CardHeader className="cardHeader-sandbox" styles={{ color: "#00703c" }}>
{t("SANDBOX_HEADER")}
Expand Down
2 changes: 1 addition & 1 deletion micro-ui/web/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected].39/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected].40/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#00bcd1" />
Expand Down