Commit 2064da73 authored by David Black's avatar David Black Committed by Commit Bot

Fix border being clipped in fallback card.

We want to use border-box box-sizing so that the border is considered
in our elements' size calculations. Otherwise borders can get clipped.

Bug: b:115585763
Change-Id: I189b6c8d6a6d1b80bf4e36b6546a1632c44a3f19
Reviewed-on: https://chromium-review.googlesource.com/1226204
Commit-Queue: David Black <dmblack@google.com>
Reviewed-by: default avatarXiaohui Chen <xiaohuic@chromium.org>
Cr-Commit-Position: refs/heads/master@{#591225}
parent 2bbe289c
......@@ -346,6 +346,7 @@ void AssistantManagerServiceImpl::OnShowContextualQueryFallback() {
<body>
<style>
* {
box-sizing: border-box;
cursor: default;
font-family: Google Sans, sans-serif;
user-select: none;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment