platform/plugins/gmail-resources/src/components/FullMessageContent.svelte
Denis Bykhov 934ada1fb8
Fix message content width (#2903)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-04-06 11:52:15 +07:00

54 lines
1.4 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
export let content: string
</script>
<iframe srcdoc={content} title="e-mail" />
<style lang="scss">
iframe {
width: 100%;
overflow: auto;
height: 100%;
font-family: var(--font-family);
font-weight: 400;
font-size: 0.875rem;
background-color: #ffffffc0;
border: none;
border-radius: 0.25rem;
:global(a) {
font: inherit;
font-weight: 500;
text-decoration: initial;
color: initial;
outline: initial;
&:hover {
color: initial;
text-decoration: initial;
}
&:active {
color: initial;
text-decoration: initial;
}
&:visited {
color: initial;
}
}
}
</style>