diff --git a/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.module.scss b/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.module.scss index 70f84cfdd..9bd832434 100644 --- a/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.module.scss +++ b/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.module.scss @@ -1,34 +1,32 @@ -@import '~@fluentui/react/dist/sass/References.scss'; - .enhancedPageProperties { - overflow: hidden; - padding: 1em; - color: "[theme:bodyText, default: #323130]"; - color: var(--bodyText); - &.teams { - font-family: $ms-font-family-fallbacks; + h2 { + font-size: 20px; + font-weight: 600; + margin-top: 0; + margin-bottom: 18px; } -} -.welcome { - text-align: center; -} + .content { + display: grid; + gap: 20px; -.welcomeImage { - width: 100%; - max-width: 420px; -} + .item { + h3 { + font-size: 17px; + font-weight: 300; + margin-top: 0; + margin-bottom: 10px; + } -.links { - a { - text-decoration: none; - color: "[theme:link, default:#03787c]"; - color: var(--link); // note: CSS Custom Properties support is limited to modern browsers only + span { + background-color: #fafafa; + padding: 8px 13px; + display: block; - &:hover { - text-decoration: underline; - color: "[theme:linkHovered, default: #014446]"; - color: var(--linkHovered); // note: CSS Custom Properties support is limited to modern browsers only + &:hover { + background-color: #f0f0f0; + } + } } } } \ No newline at end of file diff --git a/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.tsx b/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.tsx index cf1f26111..c635c71bc 100644 --- a/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.tsx +++ b/samples/react-enhanced-page-properties/src/webparts/enhancedPageProperties/components/EnhancedPageProperties.tsx @@ -1,43 +1,20 @@ -import * as React from 'react'; -import styles from './EnhancedPageProperties.module.scss'; -import { IEnhancedPagePropertiesProps } from './IEnhancedPagePropertiesProps'; -import { escape } from '@microsoft/sp-lodash-subset'; +import * as React from "react"; +import styles from "./EnhancedPageProperties.module.scss"; -export default class EnhancedPageProperties extends React.Component { - public render(): React.ReactElement { - const { - description, - isDarkTheme, - environmentMessage, - hasTeamsContext, - userDisplayName - } = this.props; - - return ( -
-
- -

Well done, {escape(userDisplayName)}!

-
{environmentMessage}
-
Web part property value: {escape(description)}
+export default function EnhancedPageProperties(): JSX.Element { + return ( +
+

Site Scope

+
+
+

Function

+ COMMUNICAITONS AND STAKEHOLDER
-
-

Welcome to SharePoint Framework!

-

- The SharePoint Framework (SPFx) is a extensibility model for Microsoft Viva, Microsoft Teams and SharePoint. It's the easiest way to extend Microsoft 365 with automatic Single Sign On, automatic hosting and industry standard tooling. -

-

Learn more about SPFx development:

- +
+

Activity

+ Advertising and Communications
-
- ); - } +
+
+ ); }